body {
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, #1e3c72, #2a6c98);
}

header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
}

h1 {
    font-family: 'Lucida Handwriting', cursive;
    color: #ffde59;
    font-size: 50px;
}

h2 {
    font-family: 'Comic Sans MS', serif;
    font-size: 25px;
}

p, ul {
    font-family: "Courier New", serif;
    font-size: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    margin: 40px auto;
}


.creature-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    width: 200px;
}

.creature-card img {
    width: 100%;
    border-radius: 15px;
}

.creatures {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-section {
    padding: 10px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    width: 400px;
    height: 300px;
    border-radius: 10px;
}

.carousel-container img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-container img.active {
    display: block;
}

button {
    background: #ffde59;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
}