body {
  background: #DBE5FF;
  font-family: 'Roboto', sans-serif;
}

form {
  width: 500px;
  margin: auto;
  background: #678FFE;
  padding: 10px;
  border: 5px solid #091D34;
}

label {
  display: inline-block;
  border: 1px solid #0247FE;
  color: black;
  background: #DBE5FF;
  border-radius: 5px 5px 0 0;
  padding: 3px 5px;
}

input[type="text"] {
  background: white;
}

input[type="range"] {
  width: 100%;
}

h1 {
  text-align: center;
}

textarea {
  width: 100%;
  height: 110px;
}

nav {
  background: #678FFE;
  text-align: center;
  margin: -5px 0px;
  ;
  font-size: 20px;
}

nav a {
  background: #DBE5FF;
  display: block;
  text-decoration: none;
  color: #012998;
  padding: 10px;
  margin: 5px 0px;
}

nav a.active {
  background: #DBE5FF;
  color: #000;
}

nav a:hover {
  background: #DBE5FF;
  color: #000;
}

main {
  width: 80%;
  margin-left: 200px;
  margin-bottom: 100px;
  align-self: center;
}

footer {
  color: black;
  background: linear-gradient(#678FFE, #0247FE);
  padding: 0px;
  position: fixed;
  bottom: -10px;
  width: 110%;
  overflow: hidden;
  margin-left: -10px;
  text-align: center;
}