body {
    font-family: sans-serif;
    margin: 0 2.5%; /* Add some side margin */
}

h1, h2, h3 {
    text-align: left;
}

button {
    color: black;
    font-weight: bold;
    border-radius: 8px;
    border: 1px solid black;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0;
    width: 100%; /* Make buttons take full width of their container by default */
}

.button-row {
    display: flex;
    gap: 10px; /* Space between buttons */
    margin-bottom: 15px; /* Space between rows */
}

/* Green buttons for Pepeha */
.pepeha-row button {
    background-color: palegreen;
}

/* Pink buttons for Mihi */
.mihi-row button {
    background-color: lightpink;
}

/* Blue buttons for links */
.links-row button {
    background-color: lightblue;
}

.yellow {
    background-color: yellow;
}

.blue {
    background-color: lightblue;
}

.pink {
    background-color: rgb(241, 139, 210);
}
