.modal-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(38, 38, 38, 0.6);
    z-index: 100;
    opacity: 0;
    transition: all 1000ms;
}
.modal-active {
    display: flex;
    opacity: 1;
}
.modal-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 0.5rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.modal-img {
    background-color: green;
    padding: 10px;
    border-radius: 50%;
}
.modal-text{
    font-family: "Lato Light";
    letter-spacing: 2px;
}
.modal-btn {
    font-family: "Lato Regular";
    font-size: 16px;
    color: var(--light-color);
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 2px solid var(--dark-color);
    border-radius: 0.5rem;
    background-color: var(--dark-color);
    transition: all 300ms;
}
.modal-btn:hover {
    cursor: pointer;
    background-color: var(--light-color);
    color: var(--dark-color);
}