body {

    font-family: 'Pacifico', cursive;
}
navbar {
  border: 3px solid black;

  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: inherit;
  font-family: 'Pacifico', cursive;
  background-color: #D6E6F2;
  cursor: url('Images/kirby.png'), auto;
  opacity: 0;
  animation: fadeInAnimation 1s ease forwards;


}

#icon {
  border: 3px solid blue;
  background-color: blue;
  background-image: url('https://wallpaperset.com/w/full/6/3/c/473208.jpg');
}

#chibi {
  display: flex;
  justify-content: center;
}

#welcome {
  display: flex;
  justify-content: center;
  text-align: center;
 
}




article {
    border: 3px solid black;
}

#mangaList {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mangaPreview {
  width: calc(33.33% - 20px); 
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #B9D7EA;
  border-radius: 10px;
  transition: transform 0.3s ease, border-radius 0.3s ease;

}

.img {
  max-width: 100%;
  height: auto;
  
}

.img:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.previewH3 {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}


#moreInfoDialog {
      border-radius: 30px;
    text-align: center;
    background-color: #B9D7EA;
    background: linear-gradient(45deg, #A0C9DB 50%, #B9D7EA 50%);
    width: 60%;
}
#reviewDialog {
    border-radius: 30px;
    text-align: center;
    background-color: #D6E6F2;
    width: 55%;
}

#chibi:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease; 
}

#welcome:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease; 
}

.mangaPreview:hover {
  transform: scale(1.05);
  cursor: pointer; 
  background: linear-gradient(45deg, #A0C9DB 50%, #B9D7EA 50%);
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}