.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 50px; 
    width: 66%;   
    display: flex
;
    flex-direction: column;
    align-items: center;        
}

.container .image-container {
    text-align: center;
    width: 100%;
}

img {
    max-width: 300px; /* Set a max width for the logo */
    margin-bottom: 20px;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 2s forwards;
    animation-delay: 0.5s; /* Delay before fading in */
}

.event-date {
    font-family: 'Lustra Bold', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.4);
    text-shadow: 1px 1px 2px black;
    min-width: 600px;
    text-align: center;
}

.days-left {
    font-family: 'Lustra Bold', sans-serif;
    font-size: 1.5rem;
    color: black;
    margin-top: 20px;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px white;
    text-align: center;
}

#infoText {
    max-width: 66%;
    font-family: 'Lustra Regular', sans-serif;
    margin-top: 3em;

    font-size: 1.2em;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.abstract {
    width: 66vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
}

.abstract label { display: block; }

.abstract .header {
    font-family: 'Lustra Bold', sans-serif;
    font-size: 3.7em;
}

.abstract .subtitle {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: grey;
}

.abstract div.text {
    width: 800px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 500px) {
    .container {
        width: 100%; /* Full width minus padding */
        padding: 0 20px;
    }

    .event-date {
        font-size: 1.8rem;
        min-width: calc(100% - 40px);
    }

    .days-left {
        font-size: 1.2rem;
    }

    #infoText {
        max-width:90%;
        margin-top: 3em;
        font-size: 1.2em;       
    }

    .abstract {
        width: 90vw;
    }
    .abstract .header {
        font-size: 2.5em;
    }
    .abstract .subtitle {
        font-size: 1.2em;
        text-align: center;
    }
    .abstract div.text {
        width: 100%;
    }
}