body{
    Color: #000;
    font-family: "Anton", serif;
}

.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: #CADBC0;
    border-color: #C94277;
    border-style: solid;
    border-width: 1px;
    border-color: #C94277;
    padding: 0;

    height: 84px;
}

/* border width for light areas*/
nav, main, aside {
    border-style: solid;
    border-width: 1px;
}
nav {
    grid-area: nav;
    background-color: #CADBC0;
    border-color: #C94277;

}

main{
    grid-area: main;
    background-color: #CADBC0;
    border-color: #C94277;
    padding: 20px;
    border-radius: 10px;
}

aside{
    grid-area: aside;
    background-color: #CADBC0;
    border-color: #C94277;
}

footer{
    grid-area: footer;
    color: #C94277;
    background-color: #CADBC0;
    text-align: right;
    border-style: solid;
    border-width: 1px;
    border-color: #C94277;
}


.box {
    padding: 20px;
    border-radius: 10px;
}





h1 {
        font-family: "Delicious Handrawn", serif;
        font-size: 300%;
        padding-left: 150px;
        margin: auto;

        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;
}


h2 {
  font-family: "Delicious Handrawn", serif;
        font-size: 300%;
        color: #C94277;
}
/* link formatting*/
a:link {color: #C94277;}
a:hover {color: #7f890d;}
/* a:visited{color: #333;} */

/* Top Navigation*/
nav a{text-decoration: none;}
/* nav a:link, nav a:visited {color: #C94277;} */
nav a:hover {color: #7f890d;}

/* --- Drop Down Menu --- */
/* Style The Dropdown Button */
.dropbtn {
    /* background-color: #CADBC0; */
    color: #C94277;
    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) */

.littlearrouw {
  font-size: 75%;
}

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #CADBC0;
    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: #bbedcb}
  
  /* 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 */
  
  /*  --- Google form styling ---*/

  iframe {
    width: 85%;
    height: 754px;
    margin: auto;
    border: 0;
  }