@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
body {
  font-family: "Poppins", sans-serif;
  background-color: #f1f8e9;
  color: #424242;
}

.hero {
  background-color: indigo;
  color: #ffffff;
}
.hero.has-background {
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
}
.hero-title {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.hero-subtitle {
  color: white;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.navbar {
  background-color: indigo;
  color: #ffffff;
}
.navbar .navbar-brand {
  align-items: center;
  color: #fff;
}
.navbar .navbar-link {
  color: white;
}
.navbar .navbar-menu {
  background-color: indigo;
  color: #fff;
}
.navbar .navbar-item {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.navbar .navbar-item:hover {
  color: #9c4dcc;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.button {
  background-color: indigo;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.button:hover {
  background-color: #9c4dcc;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.alert.is-success {
  background-color: white;
  color: white;
}
.alert.is-warning {
  background-color: #ffeb3b;
  color: black;
}
.alert.is-danger {
  background-color: #f44336;
  color: white;
}

.profile-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 2rem auto;
  text-align: center;
}
.profile-card h1 {
  font-size: 1.8rem;
  color: indigo;
  margin-bottom: 1rem;
}
.profile-card p {
  font-size: 1.2rem;
  color: #424242;
  margin: 0.5rem 0;
}
.profile-card .profile-info {
  font-size: 1rem;
  color: #9c4dcc;
}
.profile-card .verified {
  font-weight: bold;
  color: indigo;
}
.profile-card .not-verified {
  font-weight: bold;
  color: #f44336;
}

.footer {
  background-color: indigo;
  color: #fff;
  padding: 2rem;
  text-align: center;
}
