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

body {
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  color: white;
}

.page {
  background-color: black;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page__main {
  width: 100%;
  padding: 2rem;
}

.hero {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero__content {
  max-width: 500px;
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 1rem;
}
.hero__description {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.hero__social {
  display: flex;
  gap: 1rem;
  list-style: none;
}
@media (max-width: 768px) {
  .hero__social {
    align-items: center;
    justify-content: center;
  }
}
.hero__social-link {
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.hero__social-link:hover {
  transform: scale(1.1);
}
.hero__social-icon {
  width: 32px;
  height: 32px;
}
.hero__image-wrapper {
  max-width: 400px;
}
.hero__image {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  border: 2px solid black;
  outline: 2px solid white;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/*# sourceMappingURL=index.css.map */
