.event {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.event-title {
    font-size: 20px;
    text-align: center;
    color: #c9511d;
    font-weight: bold;
    margin: 40px 0;
}

.event-main {
    display: flex;
    width: 100%;
    height: 540px;
    justify-content: space-evenly;
}

.event-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    font-size: 20px;
}

.event-content span {
    font-size: 22px;
    margin-top: 14px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #9e2b1a;
}

.event-content p {
    text-align: justify;
    color: rgb(85, 81, 81);
}

.event-content img {
    width: 240px;
    height: 240px;
    border: black 2px solid;
}

@media only screen and (max-width: 800px) {
    .event-title {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .event-main {
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        height: 1260px;
    }

    .event-content span {
        font-size: 20px;
    }

    .event-content p {
        font-size: 14px;
    }

    .event-content img {
        width: 180px;
        height: 180px;
    }
}
