* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* NAVBAR */

#nav_header ul {
    height: 60px;
    list-style-type: none;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
    background-color: #e9e7e7;
}

#nav_header li {
    float: left;
}

#nav_header li a {
    display: inline-block;
    color: rgb(100, 100, 100);
    text-align: center;
    text-decoration: none;
}


/* Change the link color to #111 (black) on hover */
#nav_header li a:hover {
    color: brown;
}

/* HOME & GENERAL */

html {
    font-family: "montserratregular", sans-serif;
}


.css-fix-linebreak {
    white-space: pre-wrap;
    /* or pre-line */
}

.body {
    margin: 10px;
}

.modalDiv {
    position: fixed;
    top: 1px;
    left: 1px;
    height: 100%;
    width: 100%;
    background-color: rgba(250, 244, 242, 0.95);
}

.scrollButton {
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 10%;
    color: black;
    cursor: pointer;
    font-family: "montserratregular", sans-serif;
    background-color: rgba(250, 244, 242, 0.95);
    z-index: 100;
}

a.page-link {
    font-size: 1.6rem;
}