* {
  box-sizing: border-box;
}

body {
  font-family: Lato;
  padding: 10px;
  background: #08202a;
  margin-left: 10px;
  margin-right: 10px;
}

a:link {
  color: #afe9de;
}

a:visited {
  color: #c8e9af;
}

a:hover {
  color: #e9afe7;
}

a:active {
  color: #e95a77;
}

.main {
  color: #e9ddaf;
  background: #08202a;
  padding-left: 3%;
  padding-right: 3%;
}

.form {
  width: 60%;
}

.topnav {
  overflow: hidden;
  background-color: #0b3443;
}

.topnav a {
  float: left;
  display: block;
  color: #e9ddaf;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #e9e4cb;
  color: #08202a;
}

.topnav a.active {
  background-color: #d6e9af;
  color: #08202a;
}

.topnav .icon {
  display: none;
}

img {
 max-width:100%;
 height:auto;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .form {
    width: 100%;
    }
}

@font-face {
   font-family: Corinthia;
   src: url(fonts/Corinthia/Corinthia-Regular.ttf);
}

@font-face {
   font-family: Corinthia;
   src: url(fonts/Corinthia/Corinthia-Bold.ttf);
   font-weight: bold;
}

@font-face {
   font-family: Lato;
   src: url(fonts/Lato/Lato-Regular.ttf);
}

.corinthia {
  font-family: Corinthia;
  letter-spacing: .05em
}

.lato {
  color: #e9ddaf;
  font-family: Corinthia;
  text-align: center;
  font-size: 3em;
  letter-spacing: .05em
}

label {
  color: #e9ddaf;
}

input[type=text], textarea {
  background-color: #0b2633;
  color: #e9ddaf;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=text]:focus {
  border: 3px solid #555;
}

input[type=submit] {
  background-color: #d6e9af;
  color: #08202a;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #08202a;
  color: #e9ddaf;
}

.error {
  color: #e98351;
}