/* Add custom CSS styles below */ 

.banner {
    background-color: #f0f0f0;
    color: #333;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s, color 0.5s;
}

.banner:hover {
    background-color: #e0e0e0;
    color: #000;
}

.banner h2 {
    margin: 0;
    font-size: 24px;
}