body {
    font-family:"Kaisei Decol", "Zen Maru Gothic", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    line-height: 1.6;
}

.main {
    max-width: 800px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.header-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10vh auto 2rem auto;
    border-radius: 10px;
}

h1 {
    text-align: center;
    color: #333;
}



.event-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px 0;
}

.event-section:nth-child(even) {
    flex-direction: row-reverse;
}

.event-text, .event-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.event-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
    .event-section {
        flex-direction: column !important;
    }
}


footer{
    background-color: gray;
}