.modalSound {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 1rem; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-Sound,.modal-QR {
    background-color: var(--body-color);
    margin: auto;
    padding: 20px;
    border: 1px solid var(--pink);
    border-radius: 20px;
    height: 90%;
    background-size: cover;
    }
@media (min-width: 820px) {
    .modal-Sound,.modal-QR {
        width: 50%;
    }
}
@media (max-width: 820px) {
    .modal-Sound,.modal-QR {
        width: 95%;
    }
}
.close-Sound,.close-qr {
    color: var(--body-color);
    border: 2px dashed var(--pink);
    background-color: var(--pink);
    border-radius: 50%;
    padding: 0 1rem .2rem;
    font-size: 28px;
    position:fixed;
    font-weight: bold;
    bottom: 2.5rem;
    z-index: 4;
    }
    .close-Sound:hover,.close-Sound:focus,
    .close-qr:hover,.close-qr:focus{
    background-color: var(--body-color);
    color: var(--pink);
    text-decoration: none;
    cursor: pointer;
    }