section.presentation {
    background-color: var(--presentation-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

section.presentation div.container {
    color: var(--presentation-fg);
    font-size: 56px;
    display: flex;
    align-items: center;
    text-align: justify;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

section.presentation div.container.s {
    min-height: 40vh;
    max-height: 50vh;
}

section.presentation div.container.m {
    min-height: 70vh;
}

section.presentation div.container.l {
    min-height: 100vh;
}

section.presentation.coloured.a{
    background-color: var(--presentation-alt-bga);
}

section.presentation.coloured.b {
    background-color: var(--presentation-alt-bgb);
}

section.presentation a {
    text-decoration: none;
    border-radius: 20px;
    padding: 12px 28px;
    font-size: 24px;
    background-color: var(--presentation-button-bg);
    color: var(--presentation-button-fg);
    margin: 10px;
}

section.presentation h1 {
    font-family: 'Chango';
    color: var(--presentation-fg);
    font-size: 56px;
    margin: 30px;
    text-align: center;
}

section.presentation h2 {
    font-family: 'Chango';
    color: var(--presentation-fg);
    font-size: 40px;
    margin-bottom: 25px;
}

section.presentation h4 {
    font-size: 25px;
    text-align: center;
    margin: 30px;
}

section.presentation div.text {
    margin: 30px;
}

section.presentation p {
    color: var(--presentation-fg);
    font-size: 25px;
    margin: 10px 5px;
}

@media screen and (max-width: 1200px) {
    section.presentation div.container {
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    section.presentation div.container {
        width: 1200px;
    }
}