@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Khojki:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    background-color: rgb(0, 0, 0);
}

.header{
    height: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-between;
    position: fixed;
    top:0px;
    left:0px;
    right:0px;
    background-image: url(Assets/Header.png);
    background-size: cover;
    z-index: 100;
    box-shadow: 0px 0px 15px 3px #35FD01;
}

.LeftHeader{
   grid-column: 1/2;
   grid-row: 1/2; 
   margin-left: 0px;
}

.logo{
   width:auto;
   height:90px; 
}

.Home{
    position: absolute;
    top:25px;
    width:111px;
    height:52px; 
   transition: 250ms;
   filter:opacity(.5);
    overflow: hidden;
 }
 
 .Home:Hover{
    transform: scale(1.1); 
    filter:opacity(1);
    transform:translateY(-2px);
 }

.RightHeader{
   grid-column: 5/6;
   grid-row: 1/2; 
  margin-top: 20px;
  transition: 250ms;
   filter:opacity(.5);
}

.shop{
   width:75%;
   height:auto; 
}

.RightHeader:Hover{
   transform: scale(1.1); 
   filter:opacity(1);
   transform:translateY(-2px);
}

.Cover{
    background-color: rgb(0, 0, 0);
    top:0px;
    left:0px;
    right:0px;
    height:83px;
    margin-bottom: 2.5vw;
}

/* Header ^^^^^, Bio vvvvvvv */
.Container{
    position: relative;
    width:80%;
    margin: auto;
}



.Bio{
    background-color: #000000;
    display: grid;
    flex:1;
    width:100%;
    height:100%;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    grid-auto-rows: 750px;
    row-gap: 1em;
    column-gap: 1em;
}

.Badge{
background-image: url(Assets/ReverbBio2.gif);
background-repeat: no-repeat;
background-color: rgb(0, 0, 0);
background-position: center;

}

.Badge:hover{
    background-image: url(Assets/ReverbBio.gif);
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
    background-position: center;
    
    }

.Des{
    background-image: url(Assets/ReverbProfile1.png);
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
    background-position: center;
    
    }
    
.line{
    margin-top:2vw;
    background-color: #35FD01;
    width:100%;
    height:10px;
    margin-bottom:2vw;
}

/* Bio ^^^^^, pics vvvvvv */
.deck{
    display:grid;
    gap:2rem;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    margin-left:3vw;
    margin-right:3vw;
    margin-bottom:3vw;
}


/*  Grid style (genral styles) ^^^^^^, Card style (unit styles) vvvvvvvv */

.card {
    display:flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    background-color: #141414;
    font-size: 3rem;
    color: white;
    box-shadow: rgb(255, 0, 221) 0px 0.15rem 0.5rem,rgba(0, 225, 255, 0.1) 0px 0.175rem 0.75rem;
    height:300px;
    width:100%;
    border-radius: 4px;
    transition: all 50ms;
    overflow:hidden;
    background-size: cover;
    background-position: center;
    background-repeat: none;
}

.card:hover{
    box-shadow: rgb(255, 0, 221) 0px 0.35rem 1.175rem,rgba(0, 225, 255, 0.2) 0px 0.175rem 0.5rem;
    transform:translate(-1px) scale(1.03);
    color:aqua;
    background-color: #252525;
}

.deck .card img{
    height:100%;
    width:100%;
    object-fit:cover;
}

.box .popup{
    position:fixed;
    top:0; left:0;
    background:rgba(0, 0, 0, 0.9);
    height: 100%;
    width:100%;
    z-index: 102;
    display:none;
}

.box .popup span{
    position:absolute;
    top:0; right:10px;
    font-size:60px;
    font-weight: bolder;
    color:#fff;
    cursor:pointer;
    z-index: inherit;
}

.box .popup img{
position: absolute;
Top:50%; Left:50%;
transform: translate(-50%, -50%);
border:5px solid #dd19c2;
border-radius: 5px;
width:700px;
object-fit:cover;
}

@media (max-width:701px){
    .box .popup img{
        width:95%;
    }
}