.overlay{
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
    width: 100%;
    height: 100vh;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.popup{
    position: fixed;
    background-color: var(--background-dark);
    width: 95rem;
    height: 50rem;
    border-radius: 10px;
    margin: auto;
}

.popupImage{
    width: inherit;
    height: min-content;
    border-radius: 10px;
    position: relative;
}

.popupImage:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--background-dark) 0%, transparent 100%);;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popupImage > img{
    width: inherit;
    height: 25rem;
    object-fit: cover;
    border-radius: 10px;
}

.popupTitle{
    padding: 1.5rem;
    font-weight: bold;
    font-size: 2rem;
}


.popupSectionTitle{
    font-size: 1.5rem;
    font-weight: bold;
}

.popupDescription{
    padding: 0 1.5rem;
    font-size: 1.2rem;
}