/* Page Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #ffffff;
}

.hero-container {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 5%;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {opacity: 0;transform: scale(.98);}
  to {opacity: 1; transform: scale(1);}
}

.hero-content {
  max-width: 800px;
}

/* Text Styling */


.heading-text {
  font-weight: bold;
  font-size: clamp(2.5rem, 5vw,3.75rem);
  margin-bottom: 2rem;
  color: #000000;
  line-height: 1.1rem;
  text-align: center;
}

.subheader{
    line-height: 1.5rem;
    font-size: 1.25rem;
    font-weight: normal;
    color: #404040;
    margin-bottom: 1.25rem;
}

.body-text, .keywords {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #000000;
  margin-bottom: 1.25rem;
}

.keywords{
    color: #808080;
    margin-bottom: 2rem;
}

/* Button styling */
.button {
  display: inline-block;
  font-size: 0.93rem;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 25px;
  color: #ffffff;
  background-color: #000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.8;
  background-color: #0083ff;
}