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

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-color: #5b3a29; /* brown */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    color: #f2e8e4;
}

.text {
    font-size: 14px;
    letter-spacing: 1px;
}

.date {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.8;
}
img {
  width: 200px;
  height: auto;
  transform: translateY(70px)

}
.text1 {
  font-size: 10px;
  opacity: 0.3;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(-10px);
  animation-duration: 5s;
  animation-name: pulse;
}

@keyframes pulseOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.pulse {
  animation: pulseOpacity 3.5s ease-in-out infinite;
}

.about-autohelper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #f2e8e4;
}

.about-autohelper h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 600;
}

.about-autohelper p {
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Individual section blocks */
.about-autohelper > h2 {
  margin-top: 60px;
}

.about-autohelper > h2:first-of-type {
  margin-top: 0;
}

/* Section container look */
.about-autohelper h2 + p {
  padding-top: 10px;
}

/* Release date highlight */
.release-date {
  margin-top: 40px;
  padding: 16px;
  font-size: 1rem;
}
