```css
/* style.css */

:root {
    --baseball-red: #C8222B; /* A classic baseball red */
    --baseball-blue: #002868; /* A dark, rich blue */
    --baseball-white: #FFFFFF;

}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color:#C8222B;
    color: var(--dark-gray);
    line-height: 1.6;
	background: radial-gradient(#002868, #C8222B);
	
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--baseball-blue);
}

header {
    background-color: var(--baseball-red);
    color: var(--baseball-white);
    padding: 20px 0;
    border-radius: 12px 12px 0 0;
    text-align: center;
    margin-bottom: 25px;
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

main p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: var(--dark-gray);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.image-item {
    border: 3px solid var(--baseball-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: var(--baseball-white);
    transition: transform 0.2s ease-in-out;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.image-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid var(--baseball-red);
}

.image-item p {
    padding: 12px;
    margin: 0;
    font-size: 0.95em;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    text-align: center;
}

.descriptive-copy {
    background-color: #e0eaff; /* A light blue shade */
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    border: 1px dashed var(--baseball-red);
    text-align: justify;
}

.descriptive-copy h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--baseball-blue);
    text-align: center;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.descriptive-copy p {
    text-align: justify;
    margin-bottom: 15px;
    color: #444;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed var(--baseball-red);
    text-align: center;
    font-size: 0.85em;
    color: #555;
}
```
