body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "IBM Plex Mono", monospace;
    font-style: normal;
    font-weight: 400;
}

/* Applying the bold weight to standard bold tags */
strong, b {
    font-weight: 700;
}

/* Applying the heading font styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "IBM Plex Mono", monospace;
    font-style: normal;
    font-weight: 400;
}

h2 {
    font-size: 200%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    /* border: 1px solid gray; */
}

main {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Full-Width Video Container */
.video-box {
    width: 100%;
    max-width: none; /* Ensures no constraints are accidentally applied */
}

/* (Keep your responsive iframe rule from earlier) */
.video-box iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

#image-grid {
    /* Keep your centering rules */
    max-width: 1200px; 
    margin: 0 auto;    

    /* Switch to Grid */
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Creates exactly 6 equal columns */
    gap: 20px; /* Sets perfectly equal space between items horizontally and vertically */
    margin-bottom: 40px;
}

.image-grid-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: black;
    overflow: hidden;
    border-radius: 4px;
}

.image-grid-item img {
    width: 100%;       
    height: 100%;      /* CHANGED: This forces the image to stretch vertically to the edges of the box */
    object-fit: cover; /* Tells the image to crop itself so it doesn't get squished or stretched while filling that 100% height */
    display: block;    
}

.banner {
    /* Specify the path to your image */
    background-image: url('images/Frame_88.png');

    /* Crucial properties to make it look good */
    background-size: cover;       /* Scales image to fill the div without stretching */
    background-position: center;  /* Centers the image within the element */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    
    /* Ensure the div has a size if it contains little or no text */
    width: 100%;
    min-height: 600px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h2 {
    color: white;
    margin: 0;
}

.ban-b {
    background-image: url('images/ScreenOfLogos.png');
}

.narrow-text {
    max-width: 700px;
    text-align: center;
    padding: 100px;
}

footer {
    display: flex;
    align-items: center;
    height: 300px;
}