*{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: rgb(204, 229, 229);
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

h1{
    margin-top: 20px;
    font-size: 50px;
    color: rgb(40,83,83);
}

#motions{
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
    margin-top: 20px;
}

video{
    border: 5px solid rgb(40,83,83);
    border-radius: 10px;
}

a{
    color: rgb(40,83,83);
    font-size: 20px;
    margin-top: 12px;
    background-color: rgb(136, 170, 170);
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

a:hover{
    color: white;
    font-size: 22px;
}

footer{
    margin-top: 35%;
    font-size: 20px;
    color: rgb(40,83,83);
}