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

body {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: red;
  padding-left: 1em;
}

p, ul {
  list-style: none;
}

.title {
  padding: 0.2em;
  font-size: 6em;
  /* background-color: whitesmoke; */
  text-align: left;
  font-weight: bold;
}

.menu {
  position: absolute;
}

.fontinfo {
  max-width: 25em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 15px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 12vw;
}

.form-text {
  height: fit-content;
}

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

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 black;
  border-radius: 0px;
  background-color: white;
  margin-bottom: 10px;
  color: red;
}

input[type="submit"] {
  padding: 0.5em 1em;
  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;
}

.footer {
  margin-top: 2em;
}