body{
    margin: 0;
    padding: 0;
    background-color: black;
    color: black;
    background-image: url(images/stretart_tint.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-size: 1.1em;
    letter-spacing: 1px;
    font-family: 'Times New Roman', Times, serif

}

section, header, footer, nav{
    outline: 0px solid red;
}

header{
    display: flex;
    align-items: flex-end;
    height: 60px;
    position: fixed;
    overflow: hidden;
    top: 0;
    background-color: rgba(0,0,0, 1);
    width: 100%;
    color: white;


}



#header_text{
    margin-left: 20px;

    margin-bottom: 15px;
}

nav{
    display: flex;
    margin-left: auto;
    margin-right: 10%;
    width: 400px;
    justify-content: center;
    height: 60px;
    margin-bottom: 0px;
    height: auto;


}

section{
    height: 100vh;
    outline: red 0px solid;
    background-image: url(images/background_tint.jpg);
    background-size: cover;

    background-position: center;

    color: white;

    
    


}
div{
    outline: 0px solid lime;
}
#content_holder{
    margin-top: 0px;
    display: flex;
    justify-content: center;
    text-align: center;


}
#content_text_holder{
    margin-top: 200px;
    display: flex;
    justify-content: center;
    text-align: center;

    flex-direction: column;
    width: 50%;
    outline: 0px solid yellow;
}

#content_h1{
    font-size: 50px;
}
#content_p{
    font-size: 22px;
}

a{
    text-decoration: none;
    color: white;
}
a:visited{
    text-decoration: none;
    color: white;
}
#button{
    display: flex;
    color: white;
    background-color: black;
    padding: 10px;
    justify-content: center;
    font-size: 22px;
    
    width: 35%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    transition: background-color, 0.3s;
    border-radius: 5px;
    margin-top: 25px;
}
#button:hover{
    color: black;
    background-color: white;

}

#nav_butt{
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: auto;
    outline: 0px solid blue;
    height: 30px;
    width: 33.33%;
    padding-top: 20px;
    font-size: 1.1em;
    transition: background-color, 0.3s;

}

#nav_butt:hover{
    background-color: white;
    color: black;
    cursor: pointer;
}
footer{
    background-color: black;
    color: white;
    height: 200px;

}

@media screen and (orientation:portrait){
    #header_text{
        display: none;
    }
    #content_h1{
        text-align: center;
    }
    #content_p{
        text-align: center;
    }
    #content_text_holder{
        width: 70%;
    }
    #button{
        width: 60%;
    }
    nav{
        justify-content: center;
        margin: auto;
        height: auto;

    }
    header{
        height: auto;
    }






}




