body {
    color: #000;
    font-family: "Great Vibes", serif;
    font-weight: 400;
    font-style: normal;
    font-size: x-large;
      
}

/* ---- Set up site grid ---- */
.wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto;
    grid-template-areas:
        "header header"
        "nav nav"
        "main aside"
        "footer footer";
        grid-gap: 4px;
}

header{
    grid-area: header;
    background-color: #6A4B7A; /* Purple */
    color: #fff;
    padding: 0px;

    height: 84px;
}

/* border width for light areas */
nav, main, aside {
    border-style: solid;
    border-width: 1px;
}


nav{
    grid-area: nav;
    background-color: #A190AA; /* Pale Purple */
    color: #fff;
}

main{
    grid-area: main;
    background-color: #836B91; /* Medium Purple */
    color: #fff;
}

aside{
    grid-area: aside;
    background-color: #523264; /* Dark Purple */
    color: #fff;
}

footer{
    grid-area: footer;
    background-color: #6A4B7A; /* Purple */
    color: #CDC4D2; /* Very Light Purple */
    text-align: right;
}

/* ---- General formating ---- */

.box{
    padding: 29px;
    border-radius: 10px;
}

h1{
  color: #fff;
    font-family: "Great Vibes", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 300%;
    margin: auto;

    /* -- Transform to vertically center heading */
    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;
    float: left;
    margin-right: 100px;
}

h2, h3 {
    
    color: #fff;
    font-family: "Great Vibes", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 150%;
    
}

/* ----Link Formatting---- */

/* Links to the main section and side bar */
a:link {color: #fff;} /* White */
a:visited {color: rgb(133, 133, 133);} /* Light Grey */
a:hover {color: #CDC4D2;} /* Faint Purple */


/* Top Navigation */
nav a{text-decoration: none;}
nav a:link, nav a:visited {color: #CDC4D2;} /* Faint Purple */

/* ---- Drop Down Menu ---- */
/* Customised from
https://www.w3schools.com/css/css_dropdowns.asp */

.littlearrow{
  font-size: 75%;
}

/* Style The Dropdown Button */
.dropbtn {
    background-color: #523264;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-family: "Great Vibes", serif;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #A190AA; /* faded purple */
    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: #A190AA}
  
  /* 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: #523264;
  }
  
  
  