html{
    background-color: gray;
    color: black;
    font-family: Alata;
    min-width: 350px;
}
body{
    max-width: 1600px;
    width: 100%;
    background-color: white;
    color: rgb(36, 36, 36);
    margin: auto;
}
.navbar{
    background-color: white;  
    margin-right: 20px;
    height: 150px;
    font-size: 1.3em;
}
#headline{
    max-width: 1280px;
    width: 100%;
}
.menu{
    list-style: none;       
}
.menu li a{
    text-decoration: none;
    color: Gray;                
}
.menu li a:hover{
    text-decoration: underline;
    font-weight: 300;
}
topbar{
    background-color: white;
    display: flex;
    justify-content: space-between;
}
.title{
    background-color: white;
    color: hsl(219, 52%, 26%) ;
    text-align: left;
    display: flex;     
    width: 900px;
}
#logo{
    width: 150px;
    height: 150px;
    padding: 5px 30px;
}
.title h1{
    font-family: 'Alata', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin: 40px auto 0 auto;
    padding: unset;    
    text-align: left;
}
#namebox{
    display: flex;
    flex-direction: column;
    height: 150px;
    justify-content: center;
}            
headline{
    background-image: url('images/gohost_blu_fade.png');
    background-size: cover;
    background-position: right center; /* Keeps the right side of the image visible */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%;
    height: 715px;
    display: flex;
    flex-direction: column;
}
#mnco{
    background: none;
    width: 350px;
    margin: 120px 60px;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #203864;
}
button{
    background-color: #203864;
    color: white;
    border: lightblue 2px solid;               
    width: 200px;
    height: 70px;
    margin: 150px auto;
    font-size: .75em;
    font-weight: 700;
    cursor: pointer;
    border-radius: 7px;
}            
button a{
    text-decoration: none;
    color: white;
}
footer{
    background-color: #203864;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: .75em;
}
@media screen and (max-width: 1600px){    
    .navbar{
        padding-right: 30px;
    }
}
@media screen and (max-width: 1300px){    
    #namebox{
        flex-direction: column;
        justify-content: unset;       
    }
    #namebox h1{
        padding: unset;
    }
}
@media screen and (max-width: 1000px){    
    #namebox{
        width: unset;
    }
}
@media screen and (max-width: 730px){    
    #namebox{
        display: none;
    }   
    #logo{
        margin: 0;
    }
    #mnco{
        width: unset;
    }    
}