body {
  background-color: #223237;
  text-align: center;
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
}

* {
  box-sizing: border-box;
}

.content {
  margin-top: 50px;
  padding: 0 30px;
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
}

.spacer {
  width: 50px;
  display: inline-block;
}

.header {
  animation-duration: 1.5s;
  animation-name: fade-in;
  animation-fill-mode: forwards;
  margin-bottom: 25px;
  max-height: 150px;
}

.home .header {
  max-height: 100%;
  margin-bottom: 0;
}

p {
  color: #7ce1d9;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
  line-height: 2.2;
  font-size: 15px;
  letter-spacing: .5px;
}


ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #caa570;
  transition: all .2s linear;
}

a:hover {
  color: #7ce1d9;
}

/* Nav */

.main-nav {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.main-nav li {
  float: left;
  width: 20%;
  letter-spacing: 3px;
  font-size: 11px;
  margin-top: 30px;
}

.logo-container {
  margin-top: 50px;
}

.logo {
  width: 90px;
}

.letters {
  animation-name: spin;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
}

/* Social Media */

.social-media {
  margin-top: 50px;
  margin-bottom: 20px;
}

.social-media li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.social-media img {
  width: 30px;
}


/* Get Involved */

.get-involved p {
  text-align: center;
}

form {
  margin-top: 40px;
  margin-bottom: 30px;
}

input[type="email"] {
  margin: 0;
  margin-right: 10px;
  height: 29px;
  padding-left: 10px;
  border: none;
  width: 150px;
  vertical-align: bottom
}

input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #7ce1d9;
  background: transparent;
  color:#7ce1d9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  height: 30px;
  width: 120px;
  font-family: 'Montserrat', sans-serif;
}


/* Contact */

.contact p {
  color: #caa570;
  text-transform: uppercase;
  line-height: 3;
  font-size: 17px;
  margin: 10px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

address {
  color: #7ce1d9;
  text-transform: uppercase;
  font-style: initial;
  line-height: 2;
  font-size: 25px;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

.contact-email {
  letter-spacing: 1px;
  font-size: 14px;
  color: #7ce1d9;
  text-transform: none;
  font-family: 'Roboto Condensed', sans-serif;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .main-nav {
    width: 100%;
  }
  .main-nav li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .home .header {
    margin-bottom: 20px;
  }
  
  .content {
    padding: 0 25px;
    width: 100%;
    max-width: 100%;
  }
  
  .spacer {
    display: none;
  }
  
  p {
    text-align: center;
  }
}