#header {
  position: absolute;
  margin: 0 auto;
}

#heading {
  color: rgb(0, 0, 0);
  margin-top: 15px;
}

#toggle {
  display: block;
  margin: 20px auto;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.25em;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu {
  position: fixed;
  left: -300px;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}

.paragraph {
  width: 125px;
  max-width: 125px;
  text-align: right;
  margin: 0;
  font-size: 1em;
  margin-right: 10px;
}

h1,
h2 {
  margin: 0;
  font-size: 2.5em;
  text-align: center;
}

h2 {
  font-size: 1.2em;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ecdfc5;
}

body > div {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

button {
  display: inline-block;
  padding: 0.5em 1.5em;
  border: 0.16em solid rgba(255, 255, 255, 0);
  border-radius: 2em;
  box-sizing: border-box;
  text-decoration: none;
  color: #ffffff;
  text-shadow: 0 0.04em 0.04em rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: all 0.2s;
  background-color: #1c852b;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid rgb(5, 107, 34);
  z-index: 0;
}

button:hover {
  border-color: rgb(15, 116, 23);
}

#submit {
  display: block;
  width: 100%;
  margin: 10px auto 0 auto;
}

.darken {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1.8em;
  }
}
