body {
    color: black;
    font-family: "Caveat", serif;
    font-size: large;
}
/* Set up site grid */
.wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto;
    grid-gap: 4px;
    grid-template-areas: 
        "header header"
        "nav nav"
        "main aside"
        "footer footer";
}

header {
    grid-area: header;
    background-color: #33ff00;
    height: 84px;
}
nav {
    grid-area: nav;
    background-color: #d13bff;
    color: #F2F2F2;
    font-family: cursive;
}

nav.box {
  padding: 25px;
}

main {
    grid-area: main;
    background-color: #2ae6ff;
    color: #F2F2F2;
}

aside {
    grid-area: aside;
    background-color: #da3535;
    color: #F2F2F2;
}

footer {
    grid-area: footer;
    background-color: #ffe553;
}

/* General formating */
.box {
    padding: 20px;
    border-radius: 10px;
    padding-left: 60px;
}

h1 {
    font-family: "Great Vibes", serif;
    font-weight: 300%;
    padding-left: 150px;
    margin: auto;

     /* Make evertically centered */
     position: relative;
     top: 50%;
     transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
}

img.roundleft {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  float: left;
}

/* ---- Link Formatting ---- */
a:link {color: #F28705;}
a:visited {color: #262626;}
a:hover {color: #F2F2F2;}


/* Top Navigation */
nav a{text-decoration: none;}
nav a:link, nav a:visited {color: #262626;}
a:hover {color: #333333;}

/* ----Drop Down---- */
/* customized from https://www.w3schools.com/Css/css_dropdowns.asp */

/* Style The Dropdown Button */
.dropbtn {
    background-color: #F28705;
    color: #262626;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 7px;
  }
  
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    border: #262626 6px;
  }
  
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F28705;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;

  }
  
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #e07d03}
  
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
  }
  
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #e07d03;
  }

.arrow {
  font-size: 70%;
}