* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 2em;
    font-family: Verdana, Arial, sans-serif;
    font-size: 13pt;
    line-height: 1.4;
    color: #ffffff;
    background-color: #000000;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Images/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: .5;
}

a {
    color: #ffcc00;
}

div#container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

section {
    width: calc(50% - 15px);
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 200, 0, .35);
    border-radius: .5em;
    padding: 2em;
    overflow: hidden;
    text-shadow: 2px 2px 1px #000000;
}

section#what {
    width: 100%;
    background-image: url('Images/what.jpg');
    background-repeat: no-repeat;
    background-position: top center;
}

section#alert {
    width: 100%;
    background-color: rgba(255, 200, 0, .35);
    border: 1px solid #ffcc00;
    padding: 1em 2em;
}

section#contact {
    width: 100%;
}

section h1,
section h2 {
    margin: 0 0 1em 0;
    color: #ffcc00;
}

section p {
    margin: 0 0 1em 0;
}

section p:last-child {
    margin: 0;
}

section#where iframe {
    border: none;
    width: 100%;
    height: 300px;
    border-radius: .5em;
}

section#when ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section#when ul li {
    margin: 0 0 .5em 0;
    padding: .25em .5em;
    border-left: .25em solid #ffcc00;
    background-color: rgba(255, 255, 255, .15);
    border-radius: 0 .5em .5em 0;
}

section#when ul li time span {
    display: block;
}

section#when ul li time span.time {
    font-size: .7em;
}

@media (max-width: 900px) {
    body {
        padding: 1em;
        font-size: 12pt;
    }

    div#container {
        gap: 1em;
    }

    section {
        width: 100%;
        padding: 1em;
    }

    section#alert {
        padding: 1em;
    }
}
