body {
    background-color: rgb(255, 182, 193);
    font-family: Arial, sans-serif;
}


header {
    background-color: purple;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}


nav a {
    color: white;
    font-size: 18px;
    margin: 10px;
    text-decoration: none;
}


nav a:hover {
    color: yellow;
}


.panel {
    background-color: white;
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    border: 3px solid purple;
    border-radius: 15px;
}


.intro {
    background-color: lavender;
    padding: 15px;
    border-radius: 10px;
}


#special {
    color: purple;
    font-size: 32px;
    text-align: center;
}


h2 {
    color: purple;
    font-size: 25px;
}


p {
    font-size: 18px;
    line-height: 1.5;
}


ul {
    font-size: 18px;
}


img {
    width: 250px;
    height: 250px;
    display: block;
    margin: 20px auto;
    border: 5px solid purple;
    border-radius: 50%;
}


section {
    margin: 20px;
}