body {
    background-color: #036;
    width: 100%;
    /* font size 12 */
    font-size: 16px;
    color: white;
    font-family: "Source Code Pro", monospace;
    font-weight: 200;
    font-style: normal;
    padding: 0;
    margin: 0;
}

#header {
    margin-bottom: 2em;
}
#background-video {
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    height: 100vh;
    object-fit: fill;
}

#background-video video {
    box-sizing: border-box;
    position: absolute;
    overflow-x: clip;
    overflow-y: clip;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#logo{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
}

#crest-logo {
    max-width: 100%;

}

#main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows:max-content;
    column-gap: 6.2%;
    padding-bottom: 4em;
}
.start {
    margin-top: 0;
}

.description {
    padding-bottom: 0;
}
.title {
    text-align: right;
    font-size: 1.5em;
    font-weight: 400;
}

.topic {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.3em;
    font-weight: 400;
}

.person-position {
    margin-top: 0.4em;
}

a {
    color: white;
    text-decoration: none;
}

.item {
    margin-bottom: 3em;
}


@media screen and (max-width: 600px) {
    .section {
        grid-template-columns: 1fr;
    }
    .title {
        text-align: center;
        margin-bottom: 1em;
    }
}

.consent-popup {
    position: fixed;
    bottom: 2em;
    right: 2em;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 9999;
}
.consent-box {
    background: #fff;
    color: #222;
    max-width: 600px;
    width: 90vw;
    min-width: 0;
    padding: 1.2em 1em 1em 1em;
    border-radius: 1em;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.18);
    font-weight: 400;
    font-size: 0.92em;
    text-align: left;
    line-height: 1.5;
    box-sizing: border-box;
}
.consent-box button {
    display: block;
    margin: 1.5em auto 0 auto;
    background: #036;
    color: #fff;
    border: none;
    border-radius: 0.5em;
    padding: 0.6em 1.5em;
    font-size: 1em;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.consent-box button:hover {
    background: #1a4a7a;
}