body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

h1 {
  font-size: 120px; /* or try 64px for extra impact */
  margin-bottom: 20px;
  font-weight: bold;
}
h1 {
  font-size: 6vw; /* scales with screen width */
}


header {
  padding: 10px;
  text-align: center;
}

header img {
  max-width: 400px;
  height: auto;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.image {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 50px;
}

@media (max-width: 700px) {
  .section {
    flex-direction: column;
  }

  .section.reverse {
    flex-direction: column;
  }
}