body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('images/background-pattern.png') no-repeat center center/cover;
  color: #fff;
}

.navbar {
  background-color: #2c1a60;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

.nav-buttons .btn {
  background-color: #000;
  color: white;
  padding: 0.5rem 1.2rem;
  margin-left: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.text-content {
  max-width: 50%;
}

.headline {
  font-family: 'Stormlight', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
  color: white;
}

.subtitle {
  font-size: 1.2rem;
  color: #c6bcbf;
  margin-top: 1rem;
}

.avatar {
  margin-top: 2rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.character {
  max-width: 40%;
  height: auto;
}

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

  .text-content {
    max-width: 100%;
  }

  .character {
    max-width: 80%;
    margin-bottom: 2rem;
  }

  .headline {
    font-size: 2.2rem;
  }
}
