@media (min-width: 600px) {

body {
    background-image: url("../images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(0, 41, 58);
}

.buttons-div {
    width: 40vw;
    height: 70vh;
    margin-left: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;  
}
.buttons-div a {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    height: 12vh;
    width: 20vw;
    border-radius: 50px;
    font-size: 2.5vw;
    cursor: pointer;
    transform: scale(1);
    transition: transform .15s ease;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 250%;
}
.buttons-div a:hover {
    transform: scale(1.1);   
}
.buttons-div a {
    text-decoration: none;
    color: white
}
}