@media (max-width: 600px) {
    body {
        background-image: url("../images/Phonebackround.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgb(0, 41, 58);
        height: 20vh;
        width: 30vh;
    }

    .back-div {
        display: flex;
        justify-content: center;
    }

.buttons-div {
    width: 40vw;
    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
}
.home {
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    transition: transform .15s ease-in-out;
}

.home:hover {
    transform: scale(1.1);
}

.home-image {
    background: transparent;
    width: 100%;
}
}

