div#header {
    background-color: rgba(73, 100, 87, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    padding: 10px;
}

h1#logo {
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2em;
    margin-left: 50px;
}

h1#logo a {
    color: rgb(244, 240, 237);
    text-decoration: none;
}

nav#nav-main ol {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
}

nav#nav-main ol li a {
    padding: 15px;
    margin-left: 20px;
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2em;
    color: rgb(244, 240, 237);
    text-decoration: none;
}

nav#nav-main ol li a:hover {
    color: rgb(132, 67, 64);
}



/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */;
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

  label {
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2em;
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: rgb(178, 102, 91);;
    color: rgb(244, 240, 237);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: rgb(132, 67, 64);
  }
  
  /* Add a background color and some padding around the form */
  .container {
    background-color: rgb(119, 153, 136);
    padding: 20px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
   
  }

  /* Footer */
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(73, 100, 87);
    padding: 20px;
}

p#legalese {
    align-self: flex-end;
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 30px;
    color: rgb(244, 240, 237);
}

h3#follow {
    font-family: "justus-pro", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5em;
    letter-spacing: 5px;
    color: rgb(30, 61, 66);
}

nav#nav-footer ol {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

nav#nav-footer ol li a {
    padding: 5px;
    font-family: "mr-eaves-xl-modern", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2em;
    color: rgb(244, 240, 237);
    text-decoration: none;
    line-height: 45px;
    border-radius: 15px;
    background-color: rgba(244, 240, 237, 0.1);
}

nav#nav-footer ol li a:hover {
    color: rgb(132, 67, 64);
}

nav#nav-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* outline: thin solid white; */
    align-items: center;
}

ol#list-social li a {
    background-color: white;
    display: block;
    width: 60px;
    height: 60px;
    margin: 5px;
    background-image: url(assets/interactive-icons.png);
    border-radius: 50%;
}

ol#list-social li {
    display: inline-block;
    padding: 15px 10px 10px 0px;
}

ol#list-social li a b {
    display: none;
}

li#sm-linkedin a:link {
    background-position: 0 0px;
}

li#sm-linkedin a:hover {
    background-position: 0 -60px;
}

li#sm-linkedin a:active {
    background-position: 0 -120px;
}

li#sm-behance a:link {
    background-position: 180px 0;
}

li#sm-behance a:hover {
    background-position: 180px -60px;
}

li#sm-behance a:active {
    background-position: 180px -120px;
}

li#sm-instagram a:link {
    background-position: 120px 0;
}

li#sm-instagram a:hover {
    background-position: 120px -60px;
}

li#sm-instagram a:active {
    background-position: 120px -120px;
}

li#sm-email a:link {
    background-position: 57px 0;
}

li#sm-email a:hover {
    background-position: 57px -60px;
}

li#sm-email a:active {
    background-position: 57px -120px;
}

p#go-to-top {
    padding: 12px 15px 0 0;
}