/* style.css */

  body {
  /* Single continuous gradient spanning the full document height */
  background: linear-gradient(to bottom, #252525 0%, #7acaff 100%);
  background-repeat: no-repeat;
  background-attachment: scroll;
  / Scale the gradient to the element size (width x height). Because the body
  grows with page content, the gradient will span the whole page from top
  to bottom. Avoid fixed heights like vh here. /
  background-size: 100% 100%;
  background-color: #f0f0f0;
  font-family: 'Oswald', sans-serif;
  color: #333;
  }


.hero-section {
  padding: 40px;
  text-align: center;
}

.heading {
  font-size: 4em;
  margin-bottom: 0.5em;
  color: #00bcd4;
}

.subheading {
  font-size: 1.5em;
  color: #00bcd4;
  margin-top: 20px;
}

.content-wrapper {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  /* Remove padding-bottom */
  padding-bottom: 0;
}

.content {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2em;
  color: #333;
  margin-top: 20px;
}

.heading-description {
  font-size: 1.3em;
  color: #00bcd4;
  margin-bottom: 20px;
}

.button {
  background-color: #00bcd4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

/* Image Transitions */
img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease-in-out;
}