@media (max-width: 600px) {
body {
    background-image: url("../images/backround2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(0, 41, 58);
}

.back-div {
        display: flex;
        justify-content: center;
        
    }


.buttons-div {
   width: 80vw;
   margin-left: 0;
    height: 70vh;
    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: 40vw;
    border-radius: 50px;
    font-size: 6vw;
    cursor: pointer;
    transform: scale(1);
    transition: transform .15s ease;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 128px;
}
.buttons-div a:hover {
    transform: scale(1.1);   
}
.buttons-div a {
    text-decoration: none;
    color: white;
    
}

.names{
    padding-top: 22px;
}
}