/*
    Stylesheet for "Mavis the Cat"
    Author: Cailyn
    Date: March 2026
    Description: Basic styling and CSS grid layout.
*/

/* Style for the entire page */
html {
    background-color: #f7f7f7;
}

body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* Header styling */
header {
    text-align: center;
    padding: 20px;
}

/* Navigation styling */
nav a {
    margin-right: 15px;
    text-decoration: none;
    color: #663399;
    font-weight: bold;
}

/* Grid container */
#grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;

    /* REQUIRED: visible grid outline */
    border: 3px solid purple;
    padding: 20px;
}

/* Grid items */
.grid-item {
    border: 2px dashed #663399; /* visible outline */
    padding: 15px;
}

/* Image styling */
img {
    width: 100%;
    height: auto;
    border: 2px solid #333;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 30px;
}