
.show-modal {
}
  
.close-modal {
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    border: none;
    background: none;
}

.hidden {
    display: none;
}
  
.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;

    background-color: rgba(15, 15, 15, 0.8);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
    z-index: 10;
}
  
.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(3px);
    z-index: 5;
}

@media (max-width: 765px) {
    .modal {
        width: 70%;
    }
}