* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Rounded MT Bold', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #ffd1dc, #ffecf1);
    color: #333;
    line-height: 1.6;
    padding-bottom: 2rem;
}

header {
    background: linear-gradient(135deg, #ff9ec0, #ff6ba8);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.characters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.Character {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Character:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.Character h1 {
    color: #ff6ba8;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px dashed #ffe4ec;
    padding-bottom: 0.5rem;
    width: 100%;
}

.Character img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fff9fb;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}




.Description {
    background: linear-gradient(to right, white, #fff9fb);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Description:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.Description h2 {
    color: #ff6ba8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #ffe4ec;
    padding-bottom: 0.5rem;
}

.Description p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    padding-left: 1rem;
    position: relative;
}

.Description p:before {
    content: "•";
    color: #ff9ec0;
    position: absolute;
    left: 0;
}

.Character:nth-child(1) h1 { color: #e6b422; } /* Pompompurin - gold */
.Character:nth-child(3) h1 { color: #4a90e2; } /* Tuxedosam - blue */
.Character:nth-child(5) h1 { color: #a8d8ea; } /* Cinnamoroll - light blue */
.Character:nth-child(7) h1 { color: #7b5c3c; } /* Chococat - brown */
.Character:nth-child(9) h1 { color: #ff6b6b; } /* Pochacco - red */
.Character:nth-child(11) h1 { color: #9b59b6; } /* Kuromi - purple */
.Character:nth-child(13) h1 { color: #ff6ba8; } /* Hello Kitty - pink */
.Character:nth-child(15) h1 { color: #ff9ec0; } /* My Melody - light pink */
.Character:nth-child(17) h1 { color: #3498db; } /* Pekkle - blue */
.Character:nth-child(19) h1 { color: #2ecc71; } /* Pippo - green */


