@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  background-color: #040105;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 10px;
}

.aikon {
  position: absolute;
  left: 20px;
  top: 10px;
}

.aikon img {
  width: 40px;
  height: auto;
  cursor: pointer;
}


.sidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
}

.sidebar a:hover {
  background-color: transparent;
  color: #531c70;
}

.intro {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

.character-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #b718c6;
}

.characters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  background-color: #56038e;
  justify-items: center;
}

.character-card {
  width: 200px;
  background-color: #f1beff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}

.character-card img {
  border-radius: 8px;
}

.zorudhikku {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zorudhikku img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
