:root {
    --logocolor: white;
    --headerImg: url(pattern.jpg);
    --mainC: #2f3196;
    --accentC: #eb3f3f;
    --textC: white;
}


body {
    margin: 0;
    opacity: 0;
    text-align: justify;
}

html {
    height: 100%;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageContent {
    min-height: 100%;
}

.header_wrapper {
    width: 96vw;
    height: 25vh;
    background: var(--headerImg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: row;
    margin: 0 auto;
    margin-top: 2vw;
    margin-bottom: 4vw;
}

.header_logo_container {
    height: 100%;
    width: 10%;
    background-color: var(--logocolor);
    mask: url(ordkonstlogo.svg) no-repeat center;
    -webkit-mask: url(ordkonstlogo.svg) no-repeat center;
    transition: all 500ms;
}

.header_logo_container:hover {
    cursor: pointer;
    background-color: var(--accentC);
}

.header_spacer {
    height: 100%;
    width: 3%
}

.header_menu_container {
    height: 100%;
    width: 83%;
    justify-content: flex-start;
}

.header_menuItem {
    margin: 5%;
    font-size: 1.5vw;
    font-weight: bold;
    font-family: sans-serif;
    transition: color 500ms;
    color: var(--textC);
}

.header_menuItem:hover {
    cursor: pointer;
    color: var(--accentC);
}

.header_slideMenuIcon {
    display: none;
    color: var(--textC);
}

@media (max-width: 800px) {

    .header_spacer {
        width: 0%
    }

    .header_logo_container {
        width: 30%
    }

    .header_menuItem {
        font-size: 2vw;
        margin: 3%;
    }


}

@media (max-width: 420px) {

    .header_wrapper {
        height: 15vh;
    }

    .footer_wrapper {
        height: 15vh;
    }

    .header_spacer {
        display:
    }

    .header_logo_container {
        width: 30%;
        margin-left: 10vw;
    }

    .header_menu_container {
        font-size: 2em;
        margin-left: 10vw;
    }

    .header_menuItem {
        font-size: .5em;
        margin: 5%;
    }

    .slider span span {
        font-size: 1.3em;
    }

}

/* HOME */

.home_text_container {
    width: 96vw;
    height: 70vh;
    margin: 0 auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.home_text_box {
    width: 27%;
    height: 100%;
    margin-left: 2vw;
    margin-right: 2vw;
    flex-direction: column;
    transition: all 500ms;
    border: 3px solid transparent;
    background-color: white;
}

.home_text_image {
    height: 50%;
    width: 100%;
    background: url(asg.png);
    background-position: center;
    background-size: contain;
    background-repeat: round;
    margin-bottom: 1vw;
    color: white;
    font-family: "Montserrat", sans-serif;
    text-decoration: underline;
    font-size: .8vw;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1vw;
}

.home_text_header_box {
    height: 10%;
    width: 80%;
    font-weight: bolder;
    text-align: center;
    word-wrap: break-word;
    font-family: "Poppins";
    font-size: 1.4vw;
    padding: 1vw;
}

.home_text_content_box {
    width: 92%;
    height: 22%;
    margin-bottom: 1vw;
    flex-wrap: wrap;
    font-family: "Roboto";
    font-size: .9vw;
    margin-bottom: 2vw;
}

.home_text_info_box {
    height: 12%;
    width: 100%;
    flex-direction: column;
    font-size: .7vw;
}

.home_text_author {
    margin-bottom: 1vh;
    font-weight: bold;
    font-family: sans-serif;
}

.home_text_date {
    font-weight: 500;
    color: gray;
    font-family: sans-serif;
    margin-bottom: 2vw;
}

.home_text_box:hover {
    border-bottom: 3px solid var(--mainC);
}

.spacer {
    height: 10vh;
    width: 98vw;
    border: 1px solid pink;
}



/* FOOTER */



.footer_wrapper {
    width: 96vw;
    height: 25vh;
    background: var(--headerImg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: row;
    color: var(--textC);
    margin: 0 auto;
    margin-top: 4vw;
    margin-bottom: 2vw;
}
