body {
    background-color: #203050;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.parent-container { 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#shadow-container, #main-container {
    position: absolute; 
    width: 80%;
    height: calc(80vw * 9 / 16);
}

#shadow-container {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 3; 
}

#main-container {
    display: flex;
    position: relative;
    z-index: 2;
}

.section {
    flex: 1;
    transition: flex-grow 0.3s ease;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
}

.section img {
    height: 100%;
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: filter 0.3s ease; 
}

.section:hover img {
    filter: blur(5px); 
}

.section-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px; 
    position: absolute;
    color: #ffeeaa;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.section:hover .section-text {
    opacity: 1;
}

#logo {
    position: absolute;
    width: 30%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

#logo img {
    width: 100%;
    height: auto;
}

#logo-mobile {
    text-align: center; 
    width: 100%; 
    z-index: 2;
}

#logo-mobile img {
    width: 60%; 
    height: auto;
    margin: 0 auto; 
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 1001;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: bold;
    z-index: 1002;
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.mobile-section {
    position: relative;
}

.mobile-section img {
    width: 100%;
    height: auto;
}

.mobile-section-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px;
    color: #ffeeaa;
    text-align: center;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    padding-top: 10px;
    border-radius: 5px;
}


@media screen and (max-width: 768px) {
    #main-container {
        display: none;
    }
    #shadow-container {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    #mobile-container {
        display: none;
    }
}
