html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
}

body{
    background-color: black;
}

p {
    font-family: letter-gothic-std,monospace;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    color: white;
    margin: 0 auto;
    text-align: center;
}

.hidden{
    opacity: 0;
}

#loading{
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
}

::-webkit-scrollbar {
    display: none;
}

#header{
    width: 100vw;
    height: 100vh;
}

#wrapper_arrow{
    text-align: center;
    position: absolute;
    width: 100vw;
    bottom: 5vh;
    left: 0;
}

#arrow{
    margin: 0 auto;
    width: 50px;
}

#header_text{
    width: 60vw;
    padding: 300px 0 400px 0;
}

#video_text{
    padding: 100px 0 50px 0;
}

#container_credits{
    background-image: url("content/bg_credits.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 700px;
    margin-top: 180px;
}

#directors{
    width: 70vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    grid-gap: 50px;
}

#directors img{
    display: block;
    margin: 0 auto;
    width: 20vw;
}

.text_directors{
    margin-top: 50px;
    margin-bottom: 50px;
}

#header_directors{
    margin-bottom: 50px;
}

#footer{
    margin-top: 200px;
    margin-bottom: 100px;
    min-height: 20vh;
}

@media (max-width:1000px) {

    p{
        font-size: 18px;
    }

    #header_text{
        width: 90vw;
        padding: 300px 0 400px 0;
    }

    #directors{
        grid-template-columns: 1fr;
        grid-gap: 0;
        width: 80vw;
    }

    #directors img{
        width: 70vw;
    }

    .text_directors{
        margin-bottom: 150px;
    }

    #container_credits{
        margin-top: 200px;
        margin-bottom: 200px;
    }
}