header{
    position: relative;
    display: flex;
    width: 60%;
    margin-left: 3vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
body{
    overflow: hidden;
}

.videos{
    opacity: 0;
    
    width: 100%;
    display: none;
    justify-content: space-around;
    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    margin-bottom: 5vh;
}
.video{
    width: 20%;

    
}

.replayer{
    
    width: 2%;
    display: block;
    margin: auto;
    border: solid;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;

}
.answer{
    
    border: solid;
    padding: 5px;
    display: inline-block;
    

    
}
.wrapper{
    display:block;
    text-align: center;
}
.hided{
    
    opacity: 0;
    animation-name: appear;
    animation-delay: 6s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
input[type="text"]{
    font-family: futura-pt-bold, sans-serif;
    font-weight: 750;

    font-style: normal;
    font-size: 2em;
    border: none;
    
}


.flex{
    display: flex;
}
.test{
    width:30px;
}
#tick{
    opacity: 0;
    width: 30px;
    align-self: center;
    display: none;
}
.visibleTick{
    display: block !important;
    transition: 1s;
    opacity: 1!important;
}
.popUp{
    display: none;
    position: absolute;
    
    text-align: center;
    top: 0;
    height: 100vh;
    background-color: white;
}
.h1PopUp{
    width: 100vw;
    margin-top: 40vh;
   

}
@keyframes appear {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
        display: fle;
        
    }
}