@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../styles/fonts/PPNeueMontreal-Regular.woff2') format('woff2'),
    url('../styles/fonts/PPNeueMontreal-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../styles/fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
    url('../styles/fonts/PPNeueMontreal-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'PP Neue Montreal', Arial, Helvetica, sans-serif, sans-serif;
}


[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 {
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.25rem 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;
}


