* {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

[hidden] {
  display: none !important;
}

.center {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

img {
  height: 15vh;
}

button {
  cursor: pointer;
  font-size: 13px;
  padding: 0.1rem 0.25rem;
}

br {
  line-height: 1rem;
}

::selection {
  background-color: yellow;
}

/* HOME TYPING EFFECTS. THANK U CSS EFFECTS https://css-tricks.com/snippets/css/typewriter-effect/ */

.typewriter p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-right: 0.15em solid black;
  white-space: nowrap;
  animation: blink-caret 0.7s step-end infinite;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: black;
  }
}

/* LINK TO WHY */

footer {
  position: fixed;
  top: 1rem;
  right: 1rem;
}

/* WHY PAGE */

.why {
  padding: 1rem;
  width: 1000px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem)
}

.why p {
  margin-bottom: 1rem;
}

/* FORM PAGES */

.form {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.97);
  font-size: 16px;
  width: 95%;
  border: 1px dashed gray;
}

.form p {
  margin-bottom: 1rem;
}

.form button {
  margin-top: 1rem;
}

.marquees {
  position: fixed;
  max-height: 100vh;
  overflow: hidden;
}

marquee {
  color: blue;
  font-size: 3rem;
}

textarea {
  padding: 0.5rem;
  max-width: 100%;
  border: 1px solid light gray;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input {
  padding: 0.5rem;
}


