@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jersey+25&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  background-image: url('111.png');
  background-size: cover;
  background-position: center;
  font-family: "Roboto", sans-serif;
  color: black;
}

.meme-container {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.meme-top {
    width: 400px;
    height: auto;
    transform: rotate(10deg);
}

.meme-bottom {
    width: 400px;
    height: auto;
    transform: rotate(-10deg);
}


.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.cta-button {
  background-color: #FFA500;
  color: black;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  width: fit-content;
  align-self: center;
}

.cta-button:hover {
  background-color: #FF8C00;
}

.email-input {
  border: 2px solid #FEFFFF;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: #FEFFFF;
  background-color: transparent;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: inline-block;
}

::placeholder {
  color: black;
  opacity: 0.7;
  border-color: black;
}

.footer {
  color: Black;
  text-align: center;
  font-weight: 100px;
}

.hidden {
    display: none;
}