/* navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;

  display: flex;
  align-items: center;
  padding: 0 20px;

  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  box-sizing: border-box;
}

.nav img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

/* main box */
.head {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  max-width: 650px;
}

/* page */
.pages {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("backgroundimage.jpeg") no-repeat center center / cover;

  background-attachment: fixed;
  min-height: 100vh;

  margin: 0;
  padding: 120px 20px 20px;

 display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; 

  box-sizing: border-box;
  
}

h1 {
    color: #0f4f4f; /* Dark teal */
    font-size: 3rem;
    margin-bottom: 15px;
}

p {
    color: #ff8fab;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

 /* put cards next to each other */
    .character-container {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* keep image + text together */
    .card {
      text-align: center;
    }

    /* control image size */
    .card img {
      width: 200px;
      display: block;
      margin: 0 auto;
    }