@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=VT323&display=swap');

body{
    width: 100%;
    height: auto;
    display: flex !important;
    flex-direction: column;
    margin: 0%;
    padding: 0%;
    font-family: "Pixelify Sans";

}
main{
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
main section{
    display: flex;
    height: 30%;
    width: 80%;
    max-height: 200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;

}
main section button{
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 50px;
    border: 5px solid black;
    font-family: "Pixelify Sans";

    border-radius: 10px;
    background-color: #ADD8E6;
    color: black;
}
main section button:active{
    background-color: #87CEEB;
}
main h1{
    max-width: 300px;

    grid-row: 1;
    font-size: 300%;
    text-align: center;
    padding: 0%;
    margin: 0%;
    animation:   alternate 0.5s infinite;

}
footer{
    height: 30vh;
    width: 100%;
    font-size: small;
    background-color: black;
    font-family: "Pixelify Sans";
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;




}
footer h3{
    text-align: center;
    width: 300px;
}

@keyframes bouncing {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
    
}