* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #FFF;
}

body {
    background: #000;
    /* min-height: 1500px; */
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

section:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 10000;
}

/* section:after 
{
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100% ;
    background: #0a2a43;
    mix-blend-mode: color;
    z-index: 10000;
} */

section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;

}

#text {
    position: relative;
    margin-top: -300px;
    width: 500px;
    height: 200px;
    left: -120px;
    z-index: 1;
    color: #FFF;
}

#text img {
    width: 300px;
    object-fit: contain;
    position: static;
}

#text p {
    color: #FFF;
    margin-top: -17px;
    margin-left: 20px;
}

#subtext {
    margin-top: -60px;
}

#mountain {
    z-index: 2;
}

#road {
    z-index: 3;
}

#me {
    z-index: 4;
}

#name {
    position: relative;
    scale: 20%;
}

#content{
    margin-top: 250px;
    max-width: 1000px;
    margin-left: auto; 
    margin-right: auto;
}

#content h1{
    text-align: center;
    margin: 20px;
}

#content p{
    line-height: 170%;
    margin: 40px;
}

.button {
    position: static;
    border: 0;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 14px;
    border-color: transparent transparent transparent #fff;
    transition: 100ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    z-index: 12000;
}

.button.paused {
    border-style: double;
    border-width: 0px 0 0px 10px;
}

.button:hover {
    border-color: transparent transparent transparent #404040;
}