body {
  font-family: "Pixelify Sans", sans-serif;
  background-image: url('./assets/grid.svg');
}

h1, h2, h3, .nav-links a {
  font-family: "Cherry Bomb One", system-ui;
}

.bg-yellow {
  background: rgb(254, 255, 203);
}
.bg-purple {
  background: #bf71cf;
}
.hero-pfp {
  height: 128px;
  display: inline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.character-selector {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on mobile */
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.character-selector a {
  display: flex; /* Make the link a flex container */
  flex-direction: column; /* Stack image and text vertically */
  align-items: center; /* Center items horizontally */
  text-decoration: none;
  color: #555;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.character-selector img {
  width: 50px; /* Adjust size as needed */
  height: 50px;
  border-radius: 50%; /* Make images circular */
  margin-bottom: 0.5rem; /* Space between image and text */
}

.character-selector a:hover {
  background-color: #ff7f50;
  color: white;
  border-color: #ff7f50;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.about-me {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-me img {
  border-radius: 50%;
}

.description {
  font-size: 1.2rem;
}

.centered-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: calc(100vh - 80px);
      text-align: center;
      position: relative;
}
    
 
h1,h2,h3 {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}
    
    .cherry-bomb-one-regular {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.character-profile {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Image first, then text */
  gap: 2rem;
  align-items: center;
  position: relative;
}
.character-profile img {
  order: 0; /* Image is first by default */
}
@media (max-width: 768px) {
  .character-profile {
    grid-template-columns: 1fr;
  }
  .character-profile img {
    order: -1; /* Move image to the top on mobile */
  }
}

.profile-image {
  max-width: 400px;
}
svg-animation {
    position: absolute;
    top: 0px;
    left: 35%;
    z-index: 9;
}
