@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body {
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    scrollbar-face-color:fuchsia;
    scrollbar-highlight-color:yellow;
    scrollbar-3dlight-color:orange;
    scrollbar-darkshadow-color:darkblue;
    scrollbar-shadow-color:gray;
    scrollbar-arrow-color:yellow;
    scrollbar-track-color:aqua;
}

html, button{
    cursor: url(img/default.svg), auto;
}

.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
}

.grid{
    display: grid;
    grid-template-columns: 240px 240px 240px;
    grid-template-rows: 240px 240px;
    justify-content: center;
    gap: 120px;

}

.popup{
    
    height: 90vh;
    border-radius: 5px;
    border: 2px solid #f2f2f2;
    background-color: rgb(230, 230, 230);
    padding-top: 0px;
    
}

.reel{
    height: 92%;
    display: grid;
    grid-template-columns: repeat(3, 200px);
    grid-template-rows: repeat(3, 200px);
    overflow-y: scroll;
    justify-content: center;
    gap: 2px;
    
}

img{
    aspect-ratio: 1/1;
    width: 200px;
    object-fit: cover;
}

img:hover{
    filter: brightness(115%);
}

.box{

    width: 240px;
    height: 240px;
    border-radius: 20%;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 30px;
    background: #e0e0e0;
    box-shadow:  12px 12px 24px #bebebe,
             -12px -12px 24px #ffffff;

    background-color: whitesmoke;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, rgba(0,128,230,1) 29%, rgba(6,242,211,1) 87%);
    background-clip: text;

    border: none;

}

.box:active{
    box-shadow: inset 12px 12px 24px #bebebe,
    inset -12px -12px 24px #ffffff;
}


p{
    margin: 0;
    font-family: 'Poppins', sans-serif; 
    background-color: whitesmoke;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, rgba(0,128,230,1) 29%, rgba(6,242,211,1) 87%);
    background-clip: text;
}


#closeButton1,#closeButton2,#closeButton3,#closeButton4,#closeButton5,#closeButton6{
    border: none;
    background-color: transparent;
    padding: 0px;
}

#closeButton1,#closeButton2,#closeButton3,#closeButton4,#closeButton5,#closeButton6 > p{
    font-weight: 900;
    font-size:25px;
    margin: 0px;
}