h1 {
    text-align: center;
    color: red;
    font-size: 8vh;
}

body {
    background-color: black;
    color: white;
    font-size: 1.4em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: url('/lokam/images/bg_highschool.png');
    text-shadow: 2px 2px black;
}

.container {
    display: flex;
}

.container-section {
    width: 50%;
    padding: 25px;
}

.collapsible {
    cursor: pointer;
    width: 100%;
    height: 40px;
    font-size: 1.4em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color:rgba(255, 93, 93, 0.32);
}

.active, .collapsible:hover {
    background-color: #ff3333;
}

.content {
    display: none;
    overflow: hidden;
}

/* Mobile */
@media screen and (max-width: 1100px) {
    .container {
        display: block;
    }

    .container-section {
        width: 100%;
        padding: 5px;
    }

    body {
        background-position-x: center;
    }
}

header {
    background: url("/index_images/pattern banner black.png") repeat-x;
    background-repeat: repeat;
    border-bottom-color: #141414;
}