body{
    height: 100%;
    width: 100%;
    background: #000;
}
.info-cont{
    background-color: rgb(255, 255, 255, .8);
    color: #0D5EAF;
    padding: 5%;
    margin: 3%;
    font-size: 1.5em;
    border-radius: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#myVideo{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
.btns{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
button{
    padding: 1%;
    width: 200px;
    border-radius: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.5s ease-out;
}
button:hover{
    cursor: pointer;
    background-color: #0D5EAF;
    color: #fff;
    width: 250px;
}
#back:hover{background-color:rgb(248, 58, 58); color:#fff}
@media (max-width:600px) {
    button{
        height: 50px;
    }
    button:hover{
       cursor: pointer;
        background-color: #0D5EAF;
        color: #fff;
        width: 200px; 
    }
}