    button.openModalButton {
        display: block;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        background-color: var(--backgroundcontact);
        color: var(--textcolor);
        border-style: none;
        margin-bottom: 5px;
        margin-left: auto;
    }

    .openModalButton img{
        margin-right: 5px;
    }


    /* Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    .modal-content {
        max-width: 80%;
        max-height: 80%;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
        z-index: 1;
    }

    .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: white;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        padding: 8px;
        cursor: pointer;
    }
    .prev { left: 10%; }
    .next { right: 10%; }

    @media(min-width:700px){
        .prev { left: 30%; }
        .next { right: 30%; }
    }


