* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #363839;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding-right: 1rem;
  padding-left: 1rem;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #e1b979;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: none;
}


h1,
h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}

h1::before {
  content: "📧";
  display: block;
}

h2::before {
  display: block;
}

.form {

  max-width: 32rem;
  font-size: 14px;

}

div {
  width: 100%;

}

.form label,
.form input,
.form textarea,
.form button {
  display: block;
  width: 100%;
}


.form label {
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form input,
.form textarea {
  font: inherit;
  padding: 4px;
  margin: 5px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color, box-shadow 0.2s;
}

.form textarea {
  min-height: 100px;
  resize: vertical;
}

.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
  outline: none;
  border-color: #3ba342;
  box-shadow: 0 0 0 3px #3ba342;
}

.form button {
  display: block;
  padding: 4px;
  margin: 5px;
  background: #02800a;
  color: #fff;
  font: inherit;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.form button:hover,
.form button:focus {
  outline: none;
  background: #3ba342;
}