/* General Styles */
body {
    background-color: #111;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background-color: #b30000; /* Red background */
    padding: 20px;
}

/* Title Hover Effect */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin: 0;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    color: #fff;
}

h1 span {
    display: inline-block;
    transition: transform 0.4s ease, margin 0.4s ease;
}

h1:hover span {
    transform: scale(1.5);
    margin: 0 5px;
}

/* Image Gallery */
.images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
}

.images img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Article */
article {
    max-width: 800px;
    margin: auto;
    text-align: left;
    font-size: 18px;
    padding: 20px;
}

/* Controls */
#controls {
    margin-top: 20px;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

label {
    display: block;
    font-size: 16px;
    margin-top: 10px;
}

input {
    margin-bottom: 10px;
}