body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

.hello {
  position: absolute;
  top: 10vh;
  left: 5vw;
  font-size: calc(10vw + 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  gap: 0.05em;
  margin: 0;
  pointer-events: none;
  z-index: -1;
}

.hello span {
  display: inline-block;
}

.container {
  padding-top: 30vh;
  padding-left: 6vw;
  padding-right: 5vw;
}

.intro {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  max-width: none;
}

.about,
.contacts {
  padding-top: 5vh;
  max-width: none;
}

.about p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contacts h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.contacts li {
  padding: 10px 0;
  border-bottom: 1px solid #000;
}

.contacts li:last-child {
  border-bottom: none;
}

.contacts a {
  text-decoration: none;
  color: #000;
}

.contacts .thanks {
  margin-top: 40px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hello {
    top: 8vh;
    font-size: 18vw; /* Increased font-size for mobile */
  }
}