.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.25rem;
  box-sizing: border-box;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.header h1 {
  font-size: 6rem;
  margin: 0;
}

.header p {
  margin: 0;
  font-size: 1rem;
}

.section {
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 10px;
  border-top: 2pt solid #e0e0e082;
}

.section h2 {
  margin-bottom: 15px;
  font-size: 28pt;
  font-weight: bold;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.links a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.social-icon img {
  width: 2rem;
  height: 1rem;
  object-fit: scale-down;
}

@media (max-width: 490px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .header-top h1 {
    font-size: 5rem !important;
    margin: 0;
    margin-top: -2rem;
    margin-bottom: -1rem;
  }

  .header {
    gap: 1rem;
  }
}
