.banner {
    background-image: url('/static/images/banner.png');
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background-position: center;
}

.banner h1 {
    background-color: rgb(255, 255, 255, 0.4);
    padding: 5px 15px;
}
.history-page {
    background-color: var(--beige-thin);
}
.history-text {
    font-size: 2.0rem;
    text-align: left;
    margin-bottom: 40px;
}
table {
    border-collapse: collapse;
    width: 80%;
    font-size: 2.0rem;
    margin: 0 auto;
  }

th, td {
    border: 1px solid #5F6368;
    padding: 10px 12px;
    text-align: left;
}

th {
    background-color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

td {
    background-color: #fff;
}

@media (max-width: 768px) {
    .banner {
        height: 75px;
        font-size: 2.0rem;
    }
    .history-text {
        font-size: 1.5rem;
    }
    table {
        width: 100%;
        font-size: 1.5rem;
    }
}

@media (max-width: 350px) {
    .history-text {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    table {
        font-size: 1.2rem;
    }
}