*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,
html{
    height: 100%;
    overflow: hidden;
}
body{
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    font-family: "Black Ops One", system-ui;
}
.bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    z-index: -1;
}
.navbar{
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
}
.detial{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 50px;
}
.name{
    font-size: 2rem;
    background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}
.detial li{
    font-size: 1rem;
}
.btn_1{
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
} 
.btn_1:hover{
    transform: scale(1.5);
}