html{
    margin: 0 auto;
}

body {
    display:grid;
    grid-template-areas: 
    'address address address'
    'header header header'
    'nav nav nav'
    'content content content'
    'scrubs chair fullbody'
    'footer footer footer';
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50px 200px 50px 950px 250px 50px;
    width: 1400px;
}

header{
    position:relative;
}
p{
    font: 25px sans-serif;
    
}

#address{
    grid-area: address;
    background-color: #ffffff;
    align-self: center;
}

h1{
    font-size: 45px;
    color: #b79a50;
    padding: 0px 20px;
    stroke: #002366;
    stroke-width: 5px;
}

#address p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #002366;
    font-size: 25px;
    text-align: center;
    
}
header{
    grid-area: header;
    background-color: #000000;
}

.logo{
    height: 100px;
    margin: 20px  0px 0px 35px;
    


}

 .goldchair{
    height: 125px;
    padding: 0;
    margin: 0;
    display: hidden;
}
.logo-name{
    color: #fff6bb;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0px 0px 0px 120px;
  
    font-size: 60px;
}

nav{
    grid-area: nav;
    background-color: #b79a50;
    align-self: center;
}

ul{
    justify-content: end;
}

li{
    display: inline;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding-right: 25px;
}

a{
    color: #002366;
    font-weight: bold;

}

li a{
    color:#002366;
    text-decoration: none;
}

li a:active{
    color: #fff6bb;
}

li a:hover{
    color: #ffffff;
}
main{
    grid-area: content;
    /*height: 400px;*/
    color: #000000;
    
}

.name{
    color:#000;
    font-size: 35px;
    font-weight: bold;
}

.name2{
    color:#b79a50;
    font-size: 35px;
    font-weight: bold;
}


/*aside*/

#scrubs{
    grid-area: scrubs;
 
    background-color: #b79a50;
}

.scrubs{
    color: #002366;
    text-decoration: underline;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 15px ;
    font-size: 30px;
    font-weight: bold;
}
#scrubs a, #full_body a{
    color: #ffd700;
    text-decoration: none;
    font-size: 24px;
}


#chair{
    grid-area: chair;
    
    background-color: #ffffff;

}
.chair{color: #b79a50;
    text-decoration: underline;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 15px ;
    font-size: 30px;
    
}

#chair a{
    color: #002366;
    text-decoration: none;
    font-size: 24px;
}

#full_body{
    grid-area: fullbody;
    background-color: #000000;
}

#full_body h3{
    color: #ffffff;
    text-decoration: underline;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 15px ;
    font-size: 30px;
}
#scrubs p,#full_body p{
    color: #fff;
    font-size: 20px;
}

#chair p{
    font-size: 20px;
}

.preview{
    float: left;
    height: 170px;
    padding: 0px 10px;
}

footer{
    grid-area: footer;
    background-color: #000000;
}
footer p{
    color:#fff6bb;
    text-align: center;
}

/*Full Body page*/
.title{
    color: #b79a50;
    text-decoration: underline;
    font-weight: bold;
    margin: 20px 25px 5px 25px;
    font-size: 35px;
}
.description{
    margin: 0px 25px 5px 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;

}

.right{
    width: 200px;
    float: right;
    padding: 30px;
}
.left{
    width: 220px;
    float: left;
    padding: 25px;
}

.opening{
    margin: 25px 25px 250px 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
}

.intro{
    width: 400px;
    float: left;
    padding: 10px 15px 5px 10px;
}
img.home_left{
    width: 500px;
    float: left;
    padding: 10px 15px 0px 10px;
    margin: 10px 15px 20px 10px;
}


img.home_leftsm{
    width: 500px;
    float: left;
    padding: 10px 15px 0px 10px;
    margin: 10px 15px 20px 10px;
}

img.home_right{
    width: 200px;
    float: right;
    padding: 10px 15px 0px 10px;
}

.highlight{
    margin: 20px 10px;
    padding: 0px 10px;

}
.address{
    text-align: center;
}