body {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    background-color: rgb(87, 87, 87);

}

main {
    display: flex;
    flex-direction: column;
    background-color: rgb(37, 37, 37);
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

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

article {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    color: rgb(155, 155, 155);
}

img {
    width: 100%;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.news,
.events {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

header h1 {
    font-size: 50px;
    text-align: center;
    background-color: rgb(53, 22, 63);
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

section h2 {
    font-size: 40px;
    background-color: rgb(53, 22, 63);
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.event-text-container,
.news-text-container {
    width: fit-content;
    height: fit-content;
    max-width: 760px;
    background-color: rgb(85, 23, 97);
    padding: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

figcaption {
    color: rgb(143, 143, 143);
}

.events h3,
.news h3 {
    margin: 0;
    font-size: 25px;
}

.events p:first-of-type,
.news p:first-of-type {
    color: rgb(158, 158, 158);
}

.events p:last-of-type,
.news p:last-of-type {
    font-size: 20px;
    text-indent: 30px;
}

.events-body,
.news-body {
    background-color: rgb(15, 15, 15);
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}