body {
  background-color: #1e152a;
}

p {
  font-family: Noto Sans;
  color: white;
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
  max-width: 1024px;
}

h1 {
  font-family: Noto Sans;
  color: white;
  text-align: center;
}

footer p {
   font-size: 12px;
   background-color: #1e152a;
   color: #f7dd72;
   text-align: center;
}

ul {
  font-family: Noto Sans;
  text-align: center;
  list-style-position: inside;
  color: white;
}

.topnav {
    width: 100%;
    text-align: center;
    background-color: #4e6766;
    overflow: hidden;
}

.topnav a {
    float: none;
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 25px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #a5c882;
    color: #f7dd72;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.button {
  background-color: #5ab1bb;
  border: none;
  color: #f7dd72;
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  opacity: 0.6;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

.button:hover {opacity: 1}

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
}

input[type=submit] {
    background-color: #5ab1bb;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #f7dd72;
}

.container {
    border-radius: 5px;
    background-color: #a5c882;
    padding: 20px;
    max-width: 1024px;
    margin: 0 auto;
}

