*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color:#181818 ;
}

.navbar{
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding: 10px;
}

nav ul {
display: flex;
align-items: center;
justify-content: space-around;
height: 70px;
gap: 20px;
}

nav ul li a{
    color: white;
    transition: 0.5s;
    border-radius: 20px;
    cursor: pointer;
}

nav ul li a:hover{
    background:linear-gradient(to bottom right,blue,gold) ;
    transition: .2s;
    transform: scale(1.1);
    color: transparent;
    -webkit-text-stroke: 1px black;
}

h2 a{
    color: white;
    transition: 0.7s;
   
}

h2 a:hover{
    background-image: linear-gradient(to bottom right, blue,gold);
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.1);
    transition: 0.7s;
}

.navbar button{
    color: white;
    background-color: transparent;
    border-radius: 5px;
    width:70px ;
    height: 30px;
    cursor: pointer;
    transition: .5s;
    font-weight: bold;
}

.navbar button:hover{
    transform: scale(1.1);
    background: linear-gradient(to bottom right,blue,gold);
    transition: 0,5s;
}

/* =============================================section============================== */

.container{
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    height: 550px;
}

.lsection{
    width: 350px;
    height: 475px;
    background-color: transparent;
    color: white;
    border-radius:20px ;
    padding: 10px;
}

 span{
    background-image: linear-gradient(to bottom right, blue,gold);
    -webkit-background-clip: text;
    color: transparent;
    
} 

.rsection{
    position: relative;
    width: 360px;
    height: 485px;
}

.rsection .supra{
    border-radius: 20px;
    width: 350px;
    height: 475px;
    background-image: url(../images/supra\ smokey\ nagata.jpg);
    z-index: 1;
    background-position: center;
    background-size:cover ;
    background-repeat: no-repeat;
}

.rsection .gradient{
    border-radius: 20px;
    position: absolute;
    width: 350px;
    height: 475px;
    background-image: linear-gradient(to bottom right,blue,gold);
z-index: -1;
right: 0;
bottom: 0;
}

.rsection .gradient::after{
    background-image: linear-gradient(to bottom right,blue,gold);
}

.btns {
    display: flex;
    justify-content: space-around;
}

.btns .btn1{
    height: 30px;
    width: 84px;
color: white;
background: linear-gradient(to bottom right, blue, gold);
border-radius: 5px;
cursor: pointer;
transition: 0.5s;
}

.btns .btn2{
    width: 144px;
    height: 30px;
    color:white;
    background-color: transparent;
    border-radius: 10px;
    transition: 0.5s;
    border: 1px solid;
    border-image-source:linear-gradient(to bottom right, blue, gold) ;
    border-image-slice: 1;
    cursor: pointer;
}

.btns .btn1:hover,.btns .btn2:hover{
    transform: scale(1.1);
    transition: 0.5s;
}

@media (max-width:567px){
    .navbar{display: none;}

    .container{
        margin: 10px;
        flex-direction: column;
        gap: 10px;
        position: relative;
        height:900px ;
        width: 90%;
    }

    .gradient{
        margin-right:-93px ;
        margin-bottom: -63px;
    }
}