/* Reset some default styles */
body, html {
  margin: 0;
  padding: 0;
}

/* Hero section */
.hero {
  background-color: #1f8cff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-text {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.hero-link {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* Set the thickness of the underline */
  text-decoration-color: white; /* Set the color of the underline */
  transition: color 0.5s;
}

.hero-link:hover {
  color: #1e436b;
  transition-delay: 0s;
}

/* Content section */
.content {
  background-color: white;
  padding: 20px;
  text-align: center;
}

.content-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}
