/* VARIABLES */
:root {
    --the_grey: rgb(31, 31, 31);
    --content-color: rgb(173, 238, 180);
    --border: rgb(121, 233, 121);
}

body {
    margin: 0;
    padding: 0;

    background-image: url(images/white_texture.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    min-width: 1000px;
}

/* TYPE DIVS */

.flex_div {
    display: flex;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 150%;
}

a {
    font-style: none;
    text-decoration: none;
    
}

h3 {
    font-family: 'Bebas Neue';
}

img{
    margin: 0; padding: 0;
}

/* ZOOM DIVS FOR NAV BAR */
.zoom_div{
    height: 200px;
}



/* HEADER WITH LOGO AND NAVBAR */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--the_grey);
    padding: 0px 5% 0px 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    width: 400px;
}

/* PARENT_UL IS VISIBLE NAVBAR IN HEADER */
header .parent_ul {
    list-style: none;
    padding: 0; margin: 0;
}

header .parent_ul li {
    position: relative;
    float: left;
}

header .parent_ul li a {
    font-style: none;
    font-size: 30px;

    font-family: 'Bebas Neue';


    padding: 25px;
    color: rgb(255, 255, 255);
    display: block;
}

header .parent_ul a:hover {
    background: var(--hover-color);
    color: var(--content-color);
}



/* DROPDOWN NAV */

/* DROPDOWN APPEARS WHEN HOVER OVER LI */

header .parent_ul li:focus-within>ul,
header .parent_ul li:hover>ul {
    display: inherit;
    
}

#menu-bar {
    display: none;

    font-family: 'Bebas Neue';
}

header label {
    font-size: 20px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: none;
    font-family: 'Bebas Neue';
}

/* RESPONSIVE ELEMENT */

@media(max-width:1500px) {

    header {
        padding: 20px;
    }

    header label {
        display: initial;
        font-family: 'Bebas Neue';
    }

    header .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgb(31, 31, 31);
        border-top: 3px solid rgb(31, 31, 31);
        display: none;
    }

    header .parent_ul li {
        width: fit-content;

        display:table-row;
    }

    header .dropdown_ul {
        position: relative;
    }

    header .dropdown_ul li {
        background: rgb(109, 109, 109);

    }

    #menu-bar:checked~.navbar {
        display: initial;
    }

}







/* HEALINE WITH HL IMAGE */
.headline {
    text-align: center;
    font-family: 'Bebas Neue';

    font-size: 10vw;
    color: rgb(178, 255, 162);
    text-shadow: 3px 3px 6px rgb(0, 0, 0);

    position: absolute;
    top: 40%;
    left: 48%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
}


.headline_div {
    width: 100%;
    height: 40vw;

    position: relative;
    display: inline-block;

    background-image: url(images/hl_image_slim.jpg);

    text-align: center;
    align-items: center;
}

/* INTRO */
.container_intro {
    position: relative;
}

/* ROUND DIV */

.round-div {
    position: absolute;

    left: 8vw;
    top: -60px;

    width: 12vw;
    height: 12vw;
    background-color: var(--the_grey);
    border-radius: 50%;
    padding: 30px;

    justify-content: center;
    align-items: center;
    text-align: center;

}

.round_hl {
    color: #ffffff;
    font-size: 3vw;
    margin: 0;
}


/* CONTENT DIV */

.content_intro {
    width: 50vw;

    margin: 0 0 200px 19vw;

    padding: 20px 6vw;

    background-color: var(--content-color);

    border-radius: 5px;
    border: 1px solid var(--border);
}


.text_grey {
    color: var(--the_grey);
    text-align: justify;
    font-size: 18px;
    line-height: 190%;
}

/* AT JMU */

.flex_div {
    display: flex;
    align-items: center;

    width: 100%;


    background-color: var(--the_grey);
}


.img_jmu {
    margin-right: 100px;
    width: 30vw;
    height: auto;
}


.text_hl{
    color: #ffffff;
    font-size: 50px;
    margin: 0;
}

.text_white {
    color: white;
    text-align: justify;
    font-size: 18px;


    width: 50vw;
}


/* CONTENTS */

.text_lit{
    color: var(--the_grey);
    text-align: justify;
    font-size: 12px;

}

.container_content {
    position: relative;
}

.content_hl{
    font-size: 4vw;

    width: 61vw;

    margin: 0 20vw 0 16vw;

    padding-right: 4vw;

    text-align: right;

    background-color: var(--the_grey);

    color: white;
}   



/* PRACTICALLY */

.img_pract{
    width: 62vw;
    
    margin-left: 19vw;

    height: auto;

    margin-bottom: 0;
}


.content {
    width: 50vw;

    margin-left: 19vw;

    padding: 20px 6vw;

    background-color: var(--content-color);

    border-radius: 5px;
    border: 1px solid var(--border);
}



/* ABOUT */

#flex_about{
    width: 100%;
    height: fit-content;
    
    background-color: var(--the_grey);
    align-items:flex-start;

    padding-bottom: 50px;

}

.div_about{
    width: 30vw;

    margin: 50px 100px 0 10vw;
}

#hl_invis{
    color: var(--the_grey);
}

.hl_about{
    color: #ffffff;
    font-size: 30px;
    margin: 30px 0 0 0;
}