@media only screen and (max-width: 600px) {
    .contact-item {
        width: 100vw;
        height: fit-content;
        /*
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        border-width: 2px;
        border-style: solid;
        border-color: black;
        padding: 1%;*/
        display:none;
    }

    .contact-item:hover{
        background-color: grey;
        display:none;
    }

    .contact-data {
        width: 84vw;
        height: fit-content;
        overflow-wrap:break-word;
    }

    .contact-nickname {
        font-size: 2vh;
        font-weight: bolder;
        width: 100%;
    }

    .contact-address {
        width: 100%;
        overflow-wrap: break-word;
    }

    .contact-delete-button {
        height: 10vw;
        width: 10vw;
        font-size: 7vw;
        border-width: 2px;
        border-style: solid;
        border-color: black;
        border-radius: 5vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .contact-delete-button:hover {
        background-color: gray;
    }
}