body {
    color: rgb(0, 0, 0);
    font-family: "Belgrano", serif;
    font-weight: 400;
    font-style: normal;
}

/* ---- 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: #3d52a0; 
    color: #fff;
    padding: 0px;
    height: 80px;
}

/* ---- Border width for light areas ---- */
nav, main, aside {
    border-style: solid;
    border-width: 1px;
}

nav {
    grid-area: nav;
    background-color: #73b092;
    color: #262b22;
}

main {
    grid-area: main;
    background-color: #cbe8ba; 
    color: #262b22;
}

aside {
    grid-area: aside;
    background-color: #cbe8ba; 
    color: #262b22;
}

footer {
    grid-area: footer;
    background-color: #cbe8ba; 
    color: #262b22;
}

/* ---- General formatting ---- */
.box {
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-family: "Roboto Condensed", serif;
    font-size: 300%;
    padding-left: 150px;
    margin: auto;

/* -- Transform to vertically center heading */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-tranform:translateY(-50%);
    -ms-transform: translateY(-50%);

}

img.roundleft{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    float: left;
}

/* --- Link Formatting --- */

/* Links in the main section & Sidebar */
a:link {color: #000000;}
a:visited{color: #000;}
a:hover {color: #d9b4fc;}

/* Top Navigation */
nav a{text-decoration: none;}
nav a:link, nav a:visited {color: #000;}
nav a:hover {color: #000;} 


/* ---- Drop Down Menu ---- */

.dropbtn {
    background-color: #cbe8ba;
    color: rgb(0, 0, 0);
    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) */
  /* https://www.w3schools.com/css/css_dropdowns.asp */

.littlearrow {
    font-size: 75%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    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: #f1f1f1;
}

/* 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: #3e8e41;
} 

/* ---- Google form Styling --- */

iframe{
    width: 85%;
    height: 754px;
    margin: auto;
    border: 0;
}