body {
    font-family: Arial, sans-serif;
    background-color: #f5f5dc; /* Beige background */
    color: #4b0082; /* Light purple text */
    margin: 0;
    padding: 0;
}

header {
    background-color: #dda0dd; /* Light purple background */
    padding: 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

h2 {
    font-size: 5 em;
    color:aqua;
    text-align: right;
    text-decoration: dotted underline;
    text-decoration-color: #4b0082; /* Light purple underline */
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-shadow: 2px 2px 4px #000000; /* Black shadow */
    animation: fadeIn 2s ease-in-out;

 
main {
    padding: 20px;
    text-align: center;
    animation: slideIn 1s ease-in-out;
}

footer {
    background-color: #dda0dd; /* Light purple background */
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.color1 {
    color: aqua;
}

.color2 {
    color: #4b0082; /* Light purple */
}