/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1920px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #c4c2c2;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: auto;
}

.container {
    width: 100%;
    max-width: 1920px;
    padding: 20px;
    font-size: 1.25em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.summary {margin-bottom: 1.25em;}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #073b5a;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Six equal columns */
    gap: 20px;
    /* Ensures that all rows are of equal height */
    align-items: start; 
}

/* Container for each view to ensure consistent height */
.view {
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 1.65em;
    color: #ffffff;
    margin-bottom: 20px;
}

.event {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 145px;
}

.event h3 {
    font-size: 0.9em;
    color: #540459;
    margin-bottom: 5px;
}

/* Reference styling */
.reference {
    font-size: 0.9em;
    color: #514848;
 
}

@media only screen and (max-width: 1919px) {
    .grid-container{
        display: block;
    }

    
}
