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

body {
    font-family: 'Noto Serif Old Uyghur', serif;
    line-height: 1.2;
    background-color: #f4f4f4;
}

/* Main Content */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem;
}


/* make this section container displaying all cards in a row */

.runs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* Run Cards */
.run-card {
    border: 1px solid #ddd;
    margin: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    flex-basis: calc(20%-20px); /* Adjusts the width of the card */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Media query for smartphones */

.medal {
    width: 110px; /* Adjust the size of the medal image */
    height: auto;
    margin-bottom: 1rem;
}


/* Additional Styling */
/* Add any other styling you like, such as hover effects, font changes, etc. */
