body {
  background: #3C3C3C;
  margin: 1.5em;
  font-family: "Poppins", sans-serif;
  color: white;
}

a {
  text-decoration: none;
  font-size: 1.3rem;
  color: white;
}

nav.open-nav {
  transform: translateX(0%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {
  font-weight: bold;
}
header .menu {
  width: 3em;
  margin-top: 0em;
}
header nav {
  position: fixed;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  height: 100vh;
  width: 50%;
  z-index: 10;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
header nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}
header nav ul a {
  color: #000;
  padding: 0.75em 2em;
  display: block;
}
header nav .close {
  width: 2em;
  height: 2em;
  float: right;
  margin: 2em;
}

input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical;
}

input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ff9933;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: red;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #3C3C3C;
  padding: 20px;
  margin-top: 3em;
}

@media only screen and (min-width: 1000px) {
  body {
    margin: 2.5em 8rem;
  }
  .menu {
    display: none;
  }
  header nav {
    transform: translateX(0%);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  header nav .close {
    display: none;
  }
  header nav ul {
    display: flex;
    margin: 0;
  }
  header nav ul a {
    color: #fff;
    padding: 1.5em;
    font-weight: 100;
    font-size: 1rem;
  }
  header nav ul a:hover {
    background: none;
    text-decoration: underline;
  }
  .container {
    margin-top: 8em;
  }
}/*# sourceMappingURL=contact.css.map */