* {
  font-family: "Poppins", cursive;
  font-size: 18px;
  color: #555555;
  margin: 0px;
  padding: 0px;
}

html {
  background-color: #f3f3f3;
}

a {
  text-decoration: none;
}

nav {
  list-style: none;
  display: flex;
  padding: 50px;
  gap: 100px;
}

nav a:hover {
  text-decoration: underline;
}

main {
  min-height: calc(100vh - 50px);
  padding: 100px;
  display: flex;
  /* align-items: start; */
  gap: 200px;
}

article {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contacts_header {
  font-size: 24px;
  color: #6a5acd;
}

.contacts li {
  list-style: none;
}

.contacts li a {
  color: #ff69b4;
}

fieldset {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
}

textarea {
  border-radius: 20px;
  padding: 10px;
}

.submit_feedback_button {
  padding: 10px;
  width: 400px;
  border: none;
  border-radius: 20px;
  color: #f3f3f3;
  background-color: #6a5acd;
}

footer {
  padding: 25px;
  display: flex;
  justify-content: center;
}