/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  background-color: #1e1e23;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #4fffa8;
}

.creator {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #444;
  padding-bottom: 2rem;
}

.creator img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #333;
}

.creator-info h2 {
  font-size: 1.2rem;
  margin: 0;
  color: #ffffff;
}

.creator-info p {
  font-size: 1rem;
  color: #ccc;
}

a {
  display: inline-block;
  margin-top: 2rem;
  color: #4fffa8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

a:hover {
  color: #34c68b;
}

@media (max-width: 600px) {
  .creator {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .creator img {
    margin-bottom: 1rem;
  }
}
