body{
    color: #000;
    font-family: "Roboto Condensed", serif;
}

/* ---- Set up site grid ----*/

.wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto;
    grid-template-areas:
        "header header"
        "nav nav"
        "main aside"
        "footer footer";
    grid-gap: 4px;
}

/* border width for light areas */
nav, main, aside, header, footer {
  border-color: #000;
  padding: 20px;
  border-radius: 10px;
}

header {
    grid-area: header;
    background-color: #8A9B9E; /* grey */
    color: #000;
    padding: 0px;

    height: 84px;

}

/* border width for light areas */
nav, main, aside {
  border-style: solid;
  border-width: 1px;
}

nav {
    grid-area: nav;
    background-color: #4A6C72; /* melo blue */
    color: #000;
}

main{
    grid-area: main;
    background-color: #688286; /* grey blue */
    color: #000;
}

aside{
    grid-area: aside;
    background-color: #33575E; /* dark melo blue */
    color: #000;
    
}

footer{
    grid-area: footer;
    background-color: #8A9B9E; /* grey */
    color: #000;
    text-align: right;
}

/* ---- General formatting ---*/


h1 {
    font-family: "Josefin Sans", serif;
    font-size: 300%;
    padding-left: 115px;
    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;
    box-shadow: 1px 0px 10px #000;
    float: left;
}



/* ---- Link Formatting ---- */

/* Links in the main section & Sidebar */
a:link {color: black;}
a:visited {color: black;}
a:hover {color: white;} 

/* Top Navigation */
nav a{text-decoration:none;}
nav a:link, nav a:visited {color: black}
nav a:hover {color: white;}


/* ---- Drop Down Menu ---*/
/* Style The Dropdown Button */

.dropbtn {
    background-color: #4A6C72;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  /* Customised from https://www.w3schools.com/css/css_dropdowns.asp */

.littlearrow {
    font-size: 75%;
}

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #33575E;
    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: #8A9B9E}
  
  /* 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: #33575E;
  }

  /* --- Google Form Styling ---*/

  iframe {
    width: 85%;
    height: 754px;
    margin: auto;
    border: 0;
  }


