body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-around;
  background-color: #555;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  position: fixed;
  top: 0;
}

nav a {
  color: white;
  padding: 0.5rem 1rem;
}

nav a:hover {
  background-color: #777;
  border-radius: 10rem;
}

#page-name {
  margin-top: 5rem;
  color: #333;
  padding-left: 2rem;
  font-size: 5rem;
}

h2 {
  font-size: 3rem;
  color: #333;
}

#types-of-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5rem;
}

#message-and-email {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: solid;
  border-color: #777;
  padding-left: 2.5rem;
}

form {
  background-color: #f0ecec;
  padding-right: 2rem;
  padding-left: 2rem;
  border-radius: 2rem;
  align-items: center;
  font-size: 2rem;
  margin-right: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

form textarea {
  width: 90%;
  height: 10rem;
  border: solid;
  border-color: #777;
  border-radius: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  font-size: 2rem;
  margin-top: 1rem;
}

form input {
  width: 90%;
  border: solid;
  border-color: #777;
  border-radius: 2rem;
  padding: 1rem;
  font-size: 2rem;
  margin-top: 1rem;
}

form button {
  border-radius: 2rem;
  font-size: 2rem;
  padding-right: 1rem;
  padding-left: 1rem;
  display: flex;
  align-content: center;
  margin-bottom: 1rem;
}

form button:hover {
  background-color: #777;
  color: white;
}

#schedule-a-meeting {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 1rem;
}
#schedule-a-meeting div {
  width: 100%;
  height: 25rem;
  /* margin-left: 1rem; */
}

#schedule-a-meeting h2 {
  padding-left: 2rem;
}

@media (max-width: 850px) {
  #types-of-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5rem;
  }

  #message-and-email {
    border-bottom: solid;
    border-color: #777;
    padding-bottom: 1rem;
    border-right: 2rem;
  }
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  background-color: #555;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
}
