@font-face {
    font-family:BrothersBold;
    src: url(fonts/Brothers-Bold.ttf);
}
@font-face {
    font-family: GothamLight;
    src: url(fonts/Gotham-Light.otf);
}
@font-face {
    font-family: GothamBook;
    src: url(fonts/Gotham-Book.otf);
}
html{
    margin:0 auto;
    max-width: 900px;
    background-color: rgb(52, 22, 23);
}
header{
    height: 220px;
    background-color: rgb(98, 44, 41);
    font-family: helvetica;
    
}
.off-screen-menu{
    background-color:rgb(52, 22, 23);
    height: 220px;
    width: 100%;
    max-width: 450px;
    position:fixed;
    top:20;
    right: -450px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: left;
    font-size: 2rem;
    transition: .3s ease;
}
.off-screen-menu.active{
    right: 0;
    top:20;

}
.off-screen-menu li{
    list-style: none;
    font-family: BrothersBold;

    color:rgb(159,154,91)
}
nav{
    padding: 1rem;
    display: flex;
    background-color: rgb(98, 44, 41);
}
.ham-menu{
    height: 50px;
    width: 50px;
    margin-left:auto;
    position: relative;
}
.ham-menu span{
    height: 5px;
    width: 100%;
    background-color: silver;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1){
    top:25%;
}
.ham-menu span:nth-child(2){
    top:75%;
}
.ham-menu.active span:nth-child(1){
    top:50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2){
    opacity: 0;
}
.ham-menu.active span:nth-child(3){
    top:50%;
    transform:translate(-50%, -50%) rotate(-45deg);
}
h2{
    text-align: center;
    font-family: GothamBook;
}
h3{
    text-align: center;
    font-family: GothamBook;
}
body{
    background-color: rgb(223, 225, 224) ;
}
main{
    background-color: rgb(223, 225, 224);
    font-family: GothamLight;
    margin-right: 10px;
    display: flow-root;
}
div{
    display:flow-root;
}
.landingPhotoLeft {
    width: 40%;
    margin: 10px;
    border: 5px solid rgb(98, 44, 41);
    float:left;
}
.landingPhotoRight {
    width: 40%;
    margin-left: 10px;
    border: 5px solid rgb(98,44,41);
    float:right;
} 
#landingTextLeft{
    margin-left: 10px;
}

footer{
    text-align: center;
    background-color: rgb(98, 44, 41);
    margin-top: 10px;
}
#headerLogo{
    height:200px;
    float:left;
    margin: 10px;
    display: inline-block;
    
}
#footerLogo{
    width: 350px;
    margin: 5px;
}