* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* GENERAL */
.sc {
    font-variant: small-caps;
}

/* NAVBAR */
.navbar-collapse {
    align-items: center;
    justify-content: end;
}

/* HEADER */
.kop {
    font-family: "Abril Fatface", serif;
    margin-top: 75px;
    margin-bottom: 10px;
    justify-content: center;
}

.par {
    font-family: sans-serif;
    font-size: 1.5rem;
    color: white;
}

.main {
    font-family: "EB Garamond", serif;
    font-size: 1.5rem;
    line-height: 1.6;
    text-indent: 20px;
    text-align: justify;
    background: #eae6e6;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.footer {
    color: white;
    font-style: italic;
}

footer>div {
    border: 1px solid white;
    margin-bottom: 20px;
}

/* MEDIAQUERY */
@media screen and (max-width: 992px) {
    .column {
        column-count: 2;
    }

    .main {
        font-size: 1.3rem;
        text-indent: 0px;
        text-align: left;
    }
}

/* @media screen and (max-width: 576px) {
    
} */