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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: white;
  background-color: #171720;
}

.hero {
  display: flex;
  justify-content: space-around;
  background-color: #0b081b;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  padding: 100px 250px 180px 250px;
}

.announcement {
  background-color: #140f2c;
  border: 1px solid rgba(255, 255, 255, 0.389);
  border-radius: 50px;
  padding: 9px 9px 9px 20px;
}

.announcement-link {
  text-decoration: none;
}

.announcement:hover {
  background-color: #353147;
}

.announcement-text {
  font-size: small;
  color: white;
}

.announcement-button {
  padding: 5px 15px;
  background-color: #1d1640ef;
  border-radius: 50px;
  color: white;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background-color: green; */
}

.hero-title {
  font-size: 70px;
  text-align: center;
  line-height: 80px;
}

.hero-description {
  padding: 30px 200px;
}

.cta-button {
  font-size: small;
  background-color: rgb(37, 86, 143);
  color: white;
  /* border: 1px solid white; */
  border-radius: 50px;
  padding: 15px 25px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: rgba(104, 131, 163, 0.868);
}

@media (max-width: 640px) {
  .hero {
    padding: 1rem;
  }

  .announcement-link {
    font-size: 0.75rem;
  }

  .hero-content {
    padding: 0 1rem;
  }
}
