body {
  font-family: 'Roboto', sans-serif;
  color: #1e293b;
}
.bebas {
  font-family: "Bebas Neue", sans-serif;
}
.poppins {
  font-family: 'Poppins', sans-serif;
}
.c-container {
  max-width: 675px;
  margin: 0 auto;
}
.red {
	color: red;
}
.small-headline {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
.headline {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
.cta {
  color: #000000;
  display: block;
  text-align: center;
  padding: 15px;
  background-color: #FFD941;
  border-radius: 10px;
  font-size: 40px;
  text-decoration: none;
  font-weight: 500;
}
.body-p {
  font-size: 20px;
}
.footer {
  margin-top: 150px;
  background-color: #F1F1F1;
  padding: 40px 20px;
}
.footer p {
  font-size: 14px;
  text-align: center;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #4c5b6a;
  font-size: 16px;
}
@media screen and (max-width:650px) {
  .small-headline {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
  }
  .headline {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
  }
  .cta {
    color: #000000;
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #FFD941;
    border-radius: 10px;
    font-size: 30px;
    text-decoration: none;
    font-weight: 500;
  }
  .body-p {
    font-size: 18px;
  }
}