body {
    display: flex;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    align-content: space-around;
    flex-wrap: nowrap;
    flex-direction: column;
}

.container {
    max-width: 22rem;
    /* margin: 0 auto; */
    padding: 8px;
}

h1 {
    text-align: center;
    margin-bottom: 3.2rem;
}

.category {
    margin-bottom: 20px;
}

h2 {
    display: flex;
    font-size: 1.5em;
    margin-bottom: 10px;
    justify-content: center;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #6aa185;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2d9b44;
}

.bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
}
