@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: #1A1B1F;
    color: rgb(150, 147, 147);
    font-family: 'Roboto Condensed', sans-serif;
}
.header_box{
    height: 15vh;
}
.header{
    height: 15vh;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blink 3s infinite ease;
}
.back{
    position: absolute;
    top:2vh;
    left: 2vw;
    border-radius: 2rem;
    display: flex;
    box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
    background: linear-gradient(145deg, #1c1d21, #17181c);
}
.back .fas{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.back_details{
    /* width: 60px; */
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 5s
}
.back:hover{
    transform: scale(1.05);
    color: rgb(80, 220, 255);
}
.back:hover > .back_details{
    width: 60px;
    display: flex;
}

.filter_box{
    height: 10vh;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gfilter{
    margin-right: 10px;
}
.options{
    height: 50%;
    padding: 5px;
    font-size: 1.3rem;
    color: rgb(150, 147, 147);
    outline: none;
    border:none;
    border-radius: 2rem;
    background: linear-gradient(145deg, #1c1d21, #17181c);
    box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
}

.media_area{
    /* padding:1rem; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
/* ******************************************** */

.image_container {
    height: 100%;
    width: 100%;
    margin: 1.3rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*.image_container{
    height: 23rem;
    width: 23rem;
    margin: 1.3rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #1c1d21, #17181c);
    box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
}*/
.date{
    height: 10%;
    width: 90%;
    display: flex;
    justify-content: flex-end;
    font-family: 'Pangolin', cursive;
}
.function_box{
    height: 13%;
    width: 90%;
    margin: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.display{
    height: 70%;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.displayName{
    outline: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    font-family: 'Pangolin', cursive;
}
.dbtn{
/*    height: 70%;*/
    width: 10%;
    margin-right: 1rem;
    border-radius: 0.5rem;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #1c1d21, #17181c);
    box-shadow: 3px 3px 6px #101114, -3px -3px 6px #24252a;
}
.dbtn:hover{
    color: cyan;
}
.activeDbtn{
    background: #1A1B1F;
    box-shadow: inset 6px 6px 8px #101114, inset -6px -6px 8px #24252a;
}
.media_box{
    height: 100%;
    width: 100%;
    border-radius: 1.5rem;
    margin: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
img{
    height: 95%;
    width: 95%;
}
video {
    height: 100%;
    width: 100%;
}

@keyframes blink {
    0%{
        color: rgb(150, 147, 147);
    }
    25%{
        background: linear-gradient(120deg, #8df1f8 0%, #77affd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50%{
        background: linear-gradient(120deg, #7cf1fa 0%, #69a6fc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: #02fafa2f 1px 1px 10px;
    }
    75%{
        background: linear-gradient(120deg, #8df1f8 0%, #77affd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    100%{
        color: rgb(150, 147, 147);
    }
}
