
.content {
    flex-direction: column;
    text-align: center;
}

.button, .iframe_fallback a {
    color: white;
    transition: color 0.8s ease-in-out;
}

.button:hover, .iframe_fallback a:hover {
    color: #FE0000;
}

.section {
    padding: 2em 5em 3em;
    background: #fffa;
    width: 100%;
    box-sizing: border-box;
}

/* Without events view */
.content > a {
    background: #fff5;
    color: white;
    padding: 2em;
}

.content > a > *:first-child {
    margin-top: 0;
}

.content > a > *:last-child {
    margin-bottom: 0;
}

.content > a h2 {
    text-transform: uppercase;
}

/* With events view */
.event_header {
    margin: 0 auto 1.5em;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.event_header div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.3em;
}

.event_header img {
    height: 3em;
}

.event_header h2 {
    margin: 0;
}

.event_header h3 {
    margin-top: 0;
}

.streams_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5em;
}

.stream {
    max-width: 100%;
}

.stream.twitch {
    width: 590px;
}

.stream.youtube {
    width: 650px;
}

.iframe_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.iframe_wrapper.youtube {
    aspect-ratio: 640/360;
}

.iframe_wrapper.twitch {
    aspect-ratio: 620/378;
}

.iframe_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1000px) {
    .stream {
        width: 100% !important;
    }
}

@media (max-width: 800px) {
    .section {
        padding: 1.5em 3em 2em;
    }

    .streams_wrapper {
        gap: 3em;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 1em 2em 1.5em;
    }
}
