* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
  /* It is good practice to include slight name variations and a generic fallback like 'sans-serif' */
  font-family: "ITC Tempus Sans", "Tempus Sans ITC", sans-serif;
}

/* Form elements don't always inherit fonts automatically from the body, so you can add this to cover absolutely everything: */
input, button, textarea, select {
  font-family: inherit;
}

header {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #2c3e50;
    color: white;
}

header h1 {
    margin-bottom: 0.5rem;
}

/* The Image Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover; 
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Adds a cool hover effect */
.gallery img:hover {
    transform: scale(1.03);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #2c3e50;
    color: white;
}
