/* Bollywood inspired styles for your web page! Featuring vibrant colors and exotic flair! */

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #FFD700; /* Golden experience */
    color: #800080; /* Bollywood Purple */
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #FF4500;
    text-shadow: 2px 2px #FFD700;
}

a:hover {
    color: #32CD32; /* Dance with Lime Green */
    text-decoration: underline;
}

button {
    background-color: #FF6347; /* Tomato vibes */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    transition: 0.3s;
}

button:hover {
    background-color: #FF4500; /* Energized Orange */
}