* {
    margin: 0 auto;
    background-color: #0A4595;
    font-family: 'Bespoke Sans', sans-serif;
}

main {
    height: 100vh;
}

main img {
    width: 100%;
}

main .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    background: none;
    width: 80%;
}

.buttons button {
    border: none;
    cursor: pointer;
    transition: .5s;
    background-color: #88C7FF;
    border-radius: 3vw;
    width: 20vw;
    height: 3vw;
    font-size: 1vw;
    font-weight: 700;
    -webkit-box-shadow: 10px 6px 40px -8px rgba(0,0,0,0.5);
    -moz-box-shadow: 10px 6px 40px -8px rgba(0,0,0,0.5);
    box-shadow: 10px 6px 40px -8px rgba(0,0,0,0.5);
}

button a {
    color: #0A4595;
}

.buttons :hover{
    transform: scale(1.1);
    text-decoration: none;
}

footer {
    background-color: #0A4595;
    text-align: center;
    padding: 1vw;
    width: 100%;
}

footer img {
    max-width: 10vw;
    background-color: #0A4595;
    margin: 1vw;
}

@media (max-width: 1000px) {
    main {
        height: 90vh;
    }
    
    main .buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 5vh;
    }

    .buttons button {
        width: 40vw;
        font-size: 2vw;
        height: 7vw;
        margin-bottom: 15px;
        border-radius: 5vw;
    }

    footer {
        min-height: 10vh;
    }
    
    footer img {
        max-width: 35vw;
    }
}


@media (max-width: 600px) {
    main {
        height: 90vh;
    }
    
    main .buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20vh;
    }

    .buttons button {
        width: 70vw;
        font-size: 4vw;
        height: 10vw;
        margin-bottom: 15px;
        border-radius: 5vw;
    }

    footer {
        height: 10vh;
    }
    
    footer img {
        max-width: 35vw;
    }
}
