header {
    display: flex;
    font-size: 1.3vw;
    font-family: Bahnschrift;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

#logo {
    max-width: 5%;
    max-height: 70%;
    padding: 1.2vw;
    padding-top: 0;
}

body {
    margin: 0;
    font-family: Bahnschrift;
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 68%;
    height: auto;
    margin: auto;
    background-color: rgb(155, 51, 125);
    border-radius: 15px;
    user-select: none;
}

nav a {
    flex: 1;
    white-space: nowrap;
    margin: 0.5vw;
    text-align: center;
    font-size: 1.3vw;
    font-family: Bahnschrift;
    color: white;
    text-decoration: none;
}

nav a:hover {
    cursor: pointer;
    color: black;
    transition: 0.2s;
}

#slide-show {
    display: flex;
    justify-content: center;
    width: auto;
    width: 50%;
    min-height: 30vw;
    margin: auto;
    margin-top: 40px;
}

.slide {
    display: none;
    user-select: none;
    max-height: 30vw;
    height: auto;
}

#section {
    width: 100%;
}

.section {
    display: flex;
    flex-direction: column;
    padding-top: 2%;
    font-size: 1vw;
    width: 50%;
    margin: auto;
    justify-content: center;
}

h1 {
    font-size: 2vw;
    text-align: center;
}

img {
    padding: 1vw;
}

@media screen and (max-width: 600px) {

    nav {
        max-width: 95%;
    }

    nav a {
        font-size: 2.5vw;
    }

    #slide-show {
        width: 70%;
    }

    .slide {
        max-height: 50vw;
    }

    .section {
        font-size: 3vw;
        width: 90%;
    }

    .section img {
        width: 100%;
        height: auto;
        align-self: center;
    }

    #A-Par {
        width: 100%;
    }

    h1 {
        font-size: 4vw;
    }
}