:root {
    --utsa-blue: #0c2340;
    --utsa-orange: #f15a22;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: beige;
}

.topnav {
    overflow: hidden;
    background-color: var(--utsa-blue);
}

.topnav > .other, .topnav > #active{
    color: var(--utsa-orange);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border: 2px dashed var(--utsa-orange);
    margin: 5px;
}

.topnav a:hover {
    border: 2px solid var(--utsa-orange);
    color: var(--utsa-orange);
}

.topnav a.active {
    border: 3px solid var(--utsa-orange);
}

#home {
    float: left;
}

.other {
    float: right;
}

article{
    padding-top: 3em;
    padding-left: 3em;
    color: var(--utsa-blue)
}

#article-header{
    font-size: 50px;
}

article  p{
    width: 50%;
    float: left;
    font-size: large;
}

article > h2, article > h1{
    float: none;
    clear: both;
    padding-top: 1em;
}

#club-square {
    display: grid; /* Enable grid layout */
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Create flexible grid with auto-wrapping */
    list-style: none; /* Remove the default bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

#club-square img {
    width: 100%; /* Make images fill their container */
    height: 100%; /* Ensure images fill the square cell */
    object-fit: cover; /* Ensure images scale properly and maintain their aspect ratio */
}

#towns{
    float: none;
    clear: both;
}