* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: black;
}

p, ul {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  list-style: none;
}

.typearea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  /* background-color: whitesmoke; */
  /* border: 3px dotted white; */
  padding: 2em;
}

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

.typefacecatalogue {
  font-size: 10em;
  margin-top: 1em;
}

.form-text {
  height: fit-content;
  min-width: 20vw;
}

.button {
  /* width: 100vw; */
  /* padding-top: 10px; */
  margin-top: 5px;
  margin-bottom: 2em;
}

input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  letter-spacing: 0.2px;
  background-color: inherit;
}

input[type="text"], input[type="email"] {
  padding: 10px;
  text-align: center;
  /* border: 1px solid #ddd; */
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0px;
  background-color: black;
  margin-bottom: 10px;
  color: red;
}

input[type="submit"] {
  padding: 5px 10px;
  background-color: yellow;
  color: black;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: fit-content;
  margin: auto;
}

input[type="submit"]:hover {
  background-color: white;
  color: red;
}