/*
    font-family: 'Montserrat', sans-serif;
*/

body {
    margin: 0;
    padding: 1vh;
    display: flex;
    flex-flow: column;
    max-width: 100vw;
    min-width: 95vw;
    font-family: 'Montserrat', sans-serif;
    align-items: center;
    justify-content: space-evenly;
}
header, footer {
    display: flex;
    padding: 0 2vh 0 2vh;
    max-width: 100vw;
    min-width: 95vw;
    height: 10vh;
    justify-content: center;
    align-items: center;
}
header span {
    margin: 0vh 3vh;
    font-size: larger;
}
footer span {
    margin: 0vh 3vh;
    font-size: smaller;
}
footer div span {
    margin: 0vh 0vh;
    font-size: smaller;
}
.footer-text {
    margin: 0vh 3vh;
    text-align: center;
}
#logo {
    max-height: 8vh;
}
#header-image-container {
    background-color: transparent;
}
#header-image {
    max-height: 70vh;
    min-height: 20vh;
}

/* Body */
body section {
    max-width: 100vw;
    min-width: 95vw;
}
body p {
    white-space: pre-wrap;
    /*text-align: justify;
    -moz-text-align-last: justify;
    text-align-last: justify;*/
}
body table, body th, body td {
    border-collapse: collapse;
    border: 1px solid black;
    margin: 1vh 0vh;
    padding: 1vh;
}
.section-flex {
    margin: 0;
    padding: 1vh;
    display: flex;
    flex-flow: row;
    font-family: 'Montserrat', sans-serif;
    align-items: center;
    justify-content: center;
}
.section-div {
    max-width: 50vw;
}
.badge {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* Web-design */
#web-design {
    display: flex;
    padding: 0 1vh 0 1vh;
    max-width: 100vw;
    min-width: 95vw;
    justify-content: center;
    align-items: center;
    font-size: smaller;
}

/* Icons */
#material-symbols-outlined {
    font-size:small;
    position:relative;
    top:1px;
}

/* Links */
.nav-link {
    padding: 0vh 3vh;
}
.nav-link a {
    text-decoration: none;
    color: #59a3b0;
}
.nav-link a:hover {
    text-decoration: underline;
    color: #81cedc;
}
.nav-link a:visited {
    color: #ab133b;
}

@media screen and (max-width: 768px) {
    .section-flex {
        flex-flow: column;
        height: auto;
    }
    footer {
        flex-flow: column;
        height: auto;
    }
    footer span {
        margin: 1vh 0vh;
    }
    .section-div {
        max-width: 95vw;
    }
}