/* ****************************************/
/* --------------- GENERAL ---------------*/
/* ****************************************/

@media only screen and (min-width: 1350px) {

    body,
    p,
    li,
    a {
        font-size: 16px;
    }
}


/* If the screen size is 600px or less, set the font-size of <div> to 30px */
@media only screen and (max-width: 1350px) {

    body,
    p,
    li,
    a {
        font-size: 14px;
    }
}



h1,
p,
li,
a,
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Press Start 2P', cursive;*/
    color: #fff;
    position: relative;
}

h1 {
    font-family: 'Iceland';
    text-align: left;
    font-size: 22px;
}

li {
    list-style-type: none;
    line-height: 15px;
}

/* Justify text in boxes */
.box p {
    text-align: justify;
}

p {
    line-height: 25px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: black;
    border-left: 1px solid black;
}

::-webkit-scrollbar-thumb {
    background-color: red;
}




/* ****************************************/
/* --------------- HEADER ---------------*/
/* ****************************************/
header {
    background-color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
}

.menu_icons {
    width: 40px;
    height: 40px;
}

header ul {
    width: 100%;
    margin-left: 25px;
    display: flex;
    flex-flow: flex-start;
    justify-content: flex-start;
    grid-gap: 25px;
}

header ul li a {
    text-decoration: none;
    color: #fff;
}

header .detach_image {
    position: absolute;
    left: 94%;
    top: 0%;
}

header .detach_image img {
    width: 60%;
    height: auto;
}