html{background-color: #ffe5d9;}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: grid;
    width: 100%;
    margin: 1% auto;

    height: 1000px;
        grid-template-columns: repeat(12, auto);
    grid-template-rows: 14% 22% 56% 4%;
    grid-gap: 4%;
    
}
body > * {background-color: #d8e2dc;}
header 	{ grid-row: 1 / 2; grid-column: 1 / span 12; }
header {
    background-color: #fec5bb;
    color: white;
	text-align: center;
	font: 4em dosis;
	background-image: linear-gradient(25deg,#a5a58d 5%, #cb997e 18%, #d8e2dc 50%, #cb997e 86%, #a5a58d 100%);
}

nav 	{ grid-row: 2 / 4; grid-column: 1 / span 3; 
    border: 5px solid #dda15e;
    
}

#menu a{
    color: white;
    background: #B6739C;
    
    height: 3em;
    font-family: lato;
    font-weight: bold;
    font-size: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .4s;
    border: 1px solid #9FA4C4;
}

#menu a:hover {
    background: #6C464F;
}

#menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

#menu li {
    width: 100%;
    text-align: center;
    position: relative;
}

#menu li:hover .menuSub1 > li {
    display: block;
    flex-direction: column;
    top: 0px;
    border: 1px solid #9FA4C4;
  }

.menuSub1 li {
    display: none;
    position: absolute;
    top: 0px;
    
}

.menuSub1 {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    left: 100%;
    width: 100%;
    
}

.menuSub1 li{
    position: relative;
}

.menuSub1 li:hover .menuSub2 li {
    display: block;
}

.menuSub2 li {
    display: none;
}

.menuSub2 {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    left: 100%;
    width: 100%;
}

.arrow {
    margin-left: 2%;
    color: white;
    font-size: 50%;
}

#Welcome 	{ grid-row: 2 / 3; grid-column: 5 / span 7; 
    border: 5px solid #dda15e;
    padding-left: .5%;
    padding-right: .5%;
    font-size: 135%;
}
#Blurb1 	{ grid-row: 3 / 4; grid-column: 5 / span 4;
    border: 4px solid #dd923e;
    padding-top: 1.5%;
    padding-left: 2%;
    padding-right: 2%;
    text-align: center;
    font-size: 135%;
}

#Blurb1 img {
    box-shadow: 0px 0px 30px 20px #ffe5d9;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    width: 50%;
}
#FunFact 	{ grid-row: 3 / 4; grid-column: 9 / span 3;
    border: 4px solid #dd923e;
    font-size: 125%;
    padding-left: 5%;
    padding-right: 2%;
}

#factTitle {
    font-size: 150%;
    text-decoration: underline;
}
footer 	{ grid-row: 4 / 5; grid-column: 1 / span 12; }
footer{
    background-color: #fec5bb;
    border: 2px solid #c97415;
    text-align: center;
}