html, body {
    color: #000000;
    background-color: #FFFFFF;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    text-align: justify;
}

body h2 {
    font-weight: 300;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.nav-container {
    background-color: #000000;
    color: #FFFFFF;
    align-items: center;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}

#header h1 {
    display: flex;
    align-items: center;
    font-family: "Cormorant Garamond", serif;
    font-size:30px;
    font-weight: 100;
    line-height: 70px;
    text-align: center;
    color: #FFFFFF;
}

#header h1 .short {
    font-size: 70px;
    margin-left: 20px;
}

#header img {
    width: 111px;
    float: left;
    transform: rotate(8.883441286957009deg);
}


.navbar-toggler-icon {
    color: #FFFFFF;
}

.nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.nav-item {
    flex: 1 1 auto;
    color: #FFFFFF;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 16px;
    line-height: 33px;

}


.nav-item a {
    color: #FFFFFF;
    text-decoration: none;
    background-color: rgb(64, 64, 64);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: block;
}

.nav-item a:hover {
    color: #FFFFFF;
    text-decoration: none;
    background-color: rgb(128, 128, 128);
}

.nav .current a{
    background-color: rgb(128, 128, 128);
}


@media (max-width: 767.98px) {
  /* Styles for screens smaller than md */
    .nav {
        flex-direction: column;
    }

    .nav-item {
        margin-top: 5px;
    }
}

#main {
    border: 0;
}

#main.border-picture {
    border: 86px solid transparent;
    border-top: 0;
    border-bottom: 0;
    border-image: url(../img/border.png);
    border-image-slice: 0 100%;
    border-image-repeat:repeat;
}

#main.border-thin {
    border: solid grey;
    border-width: 0 1px 0 1px;
}

#content {
    padding: 100px;
}


.container-fluid #content {
    padding: 0;
}


@media (max-width: 767.98px) {
    #main.border-picture {
        border-right: 0;
        border-left-width: 50px;
    }

    #content {
        padding: 10px;
    }
}


#footer {
    padding: 24px;
    text-align: center;
    font-size: 14px;
}

#footer .row {
    align-items: center;
    line-height: 1;
}

#footer h1 {
    font-size: 30px;
    font-family: "Cormorant Garamond", serif;
    font-size:30px;
    font-weight: 100;
    text-align: left;
}


#footer img {
    float: right;
}

#footer i {
    margin: 0 10px 0 10px
}


@media (max-width: 767.98px) {
  /* Styles for screens smaller than md */
    #footer .row {
        text-align: left;
    }

    #footer .row .col-12 {
        margin-bottom: 34px;
    }

    #footer img {
        float: left;
    }
}