*{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
    border: none;
    color: white;
    font-family:monospace;
    text-decoration: none;
    list-style-type: none;
}
.block{
    display: block;
}
.pointer:hover{cursor: pointer;}
.underline{text-decoration: underline;}
html{
    background-color: #222228;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left:0;
    right:0;
    background-color: #313338;
    padding: 10px 50px;
    z-index: 10;
}
.categories, .business_info{
    font-size: 0;
}
.categories li, .business_info li {
    display: inline-block;
}

li a{
    padding: 16px;
    font-size: 15px;
}
.nav_item a:hover {
    text-decoration: underline;
}

.home_button{
    height: 35px;
    width: auto;
    background: none;
    filter: saturate(40%) brightness(90%);
}
.home_button:hover{
    filter: saturate(350%) brightness(80%) hue-rotate(25deg);
    color:#20da9f;
}
.logo{
    height: 100%;
    transition: 20ms;
}
.nameCont{
    float: right;
    font-weight: bold;
    font-size: 14px;
    margin-left: 5px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: inherit;
}
.firstName{
    font-family: inherit;
    letter-spacing: 3.5px;
    color: inherit;
}
.lastName{
    letter-spacing: 1.5px;
    font-family: inherit;
    color: inherit;
}
.hamburgerImage{
    width: 15px;
    background-color: goldenrod;
}
.invisible{
    display: none;
}
.mobileMenu{
    position: fixed;
    top: 55px;
    right: 0;
    background-color: inherit;
}
.mobileMenuAnchor{
    padding: 20px 15px 20px 10px;
    text-align: right;
}
.hamburgerComp{
margin: 6px;
height: 4px;
width: 40px;
background-color: #788;
border-radius: 20px;
}


.content_container{
        padding: 65px 85px;
        text-align: center;
    }
footer{
    padding:60px 30px 30px;
    text-align:center;
}
@media screen and (max-width: 1050px) {
    .content_container{
        padding: 35px 10px;
        text-align: center;
    }
}
@media screen and (max-width: 900px){
    .categories, .business_info{
        display: none;
    }
    nav{padding-right: 10px;}
}
@media screen and (min-width: 901px){
    .mobileMenu, .hamburgerAnchor{
        display: none;
    }
}
@media screen and (max-width:690px){
    header{
        margin-top: 115px;
    }
    .circle{
        height: 180px;
        width: 180px;
    }
}
@media screen and (max-width: 575px) {
    li a{
        padding: 16px 10px;
        font-size: 13px;
    }
    .content_container{
        padding: 35px 10px;
        text-align: center;
    }
}
@media screen and (max-height:550px) and (orientation:landscape){
    .header_content_wrappers{
        display: inline-block;
        vertical-align: middle;
    }
    
}