body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #e9e9e9;
  user-select: none;
  overflow: hidden;
}

body {
  background-image: url("../img/background.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.container {
  background-color: rgb(0 0 0 / 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 0px;
}

/* flex max-w-[667px] flex-col gap-4 self-center text-center text-white */
.text-container {
  padding: 20px;
  display: flex;
  max-width: 667px;
  flex-direction: column;
  gap: 1rem;
  align-self: center;
  text-align: center;
  justify-content: center;
  color: white;
  flex-grow: 1;
  margin-top: -200px;
}

.title {
  font-family: Roboto;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: #42CD71;
}

.subtitle {
  font-family: Roboto;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}