/* Basic concept */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Lato';
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body {
    background-color: #D7D7D7;
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/hero/ISTRAWU_WEB_LR-108.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.box {
    max-width: 1300px;
    margin: 0 auto;
}

.box-head {
    max-width: 1140px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Style The Dropdown Button */


/* Style The Dropdown Button */

.dropbtn {
    background-color: transparent;
    font-size: 15px;
    border: none;
    cursor: pointer;
    color: #fff;
}


/* The container <div> - needed to position the dropdown content */

.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 25px;
    margin-top: 10px;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
    font-size: 15px;
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 60px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}


/* Links inside the dropdown */

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


/* Change color of dropdown links on hover */

.dropdown-content a:hover {
    background-color: #046307;
    color: #fff;
    font-weight: 300;
}


/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
    display: block;
}


/* Change the background color of the dropdown button when the dropdown content is shown */

.dropdown:hover .dropbtn {
    background-color: #046307;
    color: #fff;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.main-header {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 100;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 20px;
    word-spacing: 2px;
}


/* post configuration */

.blog-pic {
    height: 300px;
    width: 200px;
}

.blog-post {
    display: flex;
    padding: 40px;
}

.text-box {
    padding: 0 40px;
    max-width: 100%;
}

.text-box h2 {
    padding: 10px;
    text-align: center;
    color: black;
}

.date {
    background: black;
    color: seashell;
    height: 70px;
    font-family: 'Dancing Script', cursive;
    padding: 10px;
    max-width: 100%;
}

.read-more-a {
    color: red;
    font-size: 110%;
}

.read-more-a:hover {
    text-decoration: underline;
    color: #046307;
}


/* ARROW IN DA NEE */

.arrow {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

@-webkit-keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}