@font-face {
    font-family: 'RoundHand Free';
    src: url('../fonts/RoundHand\ Free.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: 'Amatic SC';
    src: url('../fonts/AmaticSC-Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@media screen and (orientation:portrait) {
    * {
        font-size: 26px;
    }

    .heading {
        height: 10vh !important;
        margin-top: 155px !important;
    }

    .container {
        min-width: 100% !important;
    }

    .article-image-row {
        width: 100% !important;
    }

    .carousel-item {
        height: 40vh !important;
    }

    .scrolldown {
        display: none;

    }

    .navbar-brand img {
        width: 200px !important;
    }
}

nav {
    padding-left: 18px;
    padding-right: 18px;
}


.presentation h3 {
    text-align: center;
    margin-top: 30px;
}

.presentation p {
    font-size: 18px;
}


.article-image-row {
    width: 100%;
    margin-bottom: 10px;
}

@media (min-width: 576px) {
    .article-image-row {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .article-image-row {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .article-image-row {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .article-image-row {
        width: 1110px;
    }
}

@media (min-width: 1400px) {
    .article-image-row {
        width: 1320px;
    }
}

.scrolldown {
    position: absolute;
    top: 87vh;
    z-index: 2;
    left: 48.5%;
    -webkit-animation: mover 0.6s infinite alternate;
    animation: mover 0.6s infinite alternate;
}

.scrolldown img {
    width: 80px;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

.video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.image {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}


body {
    min-width: 525px;
}

.navbar {
    font-size: 18px;
}

.nav-link {
    text-decoration: none !important;
}

.navbar-brand img {
    width: 100px;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    color: green;
}

.nav-link:hover {
    color: green !important;
}

.carousel-item {
    height: 100vh;
}

.heading {
    margin-top: 90px;
    display: flex;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 25vh;
    min-height: 140px;
    align-items: center;
    justify-content: center;
}

.heading span {
    font-size: 65px;
    color: white;
    font-weight: bolder;
    display: inline-block;
    vertical-align: middle;
}

.quote {
    font-family: 'RoundHand Free';
    text-align: center;
    padding: 0px;
    color: #822c2b;
}

.quote p {
    font-family: 'RoundHand Free';
    font-size: 49px !important;
    font-weight: bold;
    color: #822c2b;
}

.footer {
    width: 100%;
}

.footer-container {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.footer-content {
    margin-left: 2%;
    margin-right: 2%;
    width: 340px;
    text-align: center;
}

.footer-heading {
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.footer-text {
    color: white !important;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.footer-text a {
    color: white;
}

.block {
    display: block;
}

* {
    font-size: 18px;
    font-family: 'Comfortaa', cursive;
}

.article {
    margin: 20px;
    border-style: thin;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.article_header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.article_image img {
    width: 100%;
}

#title {
    font-size: 24px;
}

.article_content {
    padding: 20px;
}

.article_content pre {
    font-size: 18px;
    font-family: 'Comfortaa', cursive;
    white-space: pre-wrap;
    word-wrap: break-word;
}