body{
    background-color: #1a472a;
}

/* Nav Section */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #aaaaaa;
    border-radius:15px;
    opacity: 0.75;
    font-family: 'Nunito', sans-serif;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  li a:hover {
    background-color: #939393;
  }

  /* End of nav section */

.header{
    padding-top:2.5%;
    padding-bottom:2.5%;
    font-family: Arial, Helvetica, sans-serif;
}

.title{
    margin:0;
    text-transform:uppercase;
    font-size: 75pt;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1a472a;
    text-shadow: -1px 1px 0px #77906c,
                1px 1px 0 #77906c,
                1px -1px 0 #77906c,
                -1px -1px 0 #77906c;
  }

.title span{
    color:#77906c;
    font-size: 90pt;
}

/* CONTACT ME PAGE */
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    margin-top: 6px;
    margin-bottom: 16px; 
    resize: vertical 
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #679a7c;
    color: white;
    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: #276f45;
}
  
/* Add a background color and some padding around the form */
.contact_container {
    border-radius: 15px;
    background-color: #bed3c7;
    padding:3%;
    width:75%;
    align-items: center;
    margin: auto;
    font-family: 'Nunito', sans-serif;
}
