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

@font-face {
  font-family: 'Drama-Horizontal';
  src: url('_src/fonts/drama/DramaTrial-RegularHorizontal-WIP14.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  letter-spacing: 0.03em;
  color: red;
}

.drama {
  font-family: 'Drama-Horizontal', 'Times New Roman', Times, serif;
  font-size: 200pt;
}


p, ul {
  list-style: none;
}

p {
  padding: 0.5em 0;
}

sup, sub {
  font-size: 1.1em;
}

/* sup, sub {
  font-size: inherit;
  vertical-align: inherit;
} */

.menu {
  display: flex;
  justify-content: left;
  gap: 1em;
  padding: 1em 0 0 1.5em;
}

.menu a {
  text-decoration: none;
  color: red;
  padding: 0.5em 0.5em;
  transition: background-color 0.3s ease;
}

.menu a:hover {
  text-decoration: underline;
}

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


/* - - - - - - Newsletter - - - - - - */
.newsletter {
  text-align: center;
  margin-top: 5em;
}

.newsletter form {
  display: inline-block;
  text-align: center;
}

.previous-newsletter {
  margin-top: 10em;
  text-align: center;
}

/* 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;
}