body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    color: #f1e609;
    transition: background-color 0.5s ease;
}

header {
    text-align: center;
    padding: 20px;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

header:hover {
    transform: scale(1.2);
}

section {
    margin: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.5s ease;
}

section:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

footer {
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #eaeaea;
    color: rgb(5, 119, 226);
}

footer:hover {
    background-color: #004d40;
    transition: background-color 0.5s ease;
}
