/*
    pcstyles.css
    10pt = 13px
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    background-color: #ffffff;
}

.wrapper {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.header {
    max-width: 705px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;

}
.banner {
    width: 100%;
}
/*
.menu {
    width: 100%;
    display: flex;
    align-content: space-between;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
*/
.menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    place-items: center;
}

.menu ul {
    max-width: 64px;
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.menu li a {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center content horizontally within the item */
    text-decoration: none; /* Remove underlines from links */
    color: #333; /* Set text color */
    font-family: sans-serif;
    text-align: center;
}

.menu img {
    width: 100%;
    height: 100%;
    margin-bottom: -0.2rem;
}

.menu span {
    font-size: 1.33rem;
    font-weight: 700;
    text-wrap: nowrap;
    /* Optional: Add hover effects or other styling here */
}

.upload-form {
    width: 100%;
}

.footer {
    margin-bottom: 2rem;
}

/*
#upload-iframe {
    margin: 0 auto;
}

.upload-spacer {
    width: 100%;
    height: auto;
}
*/

@media (max-width: 500px) {
  .menu {
    /* Changes to 3 columns, automatically flowing into two rows */
    grid-template-columns: repeat(3, 1fr);
  }
}

