/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

h1 {
    background-color: #904D6C;
    color: #fff;
    padding: 10px;
    text-align: center;
}

h2 {
    color: #904D6C;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

h2 a {
    color: #904D6C;
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 801px) {
    ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

li {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    word-wrap: break-word;
    text-align: center;
    /* Add the following lines */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #904D6C;
    font-weight: bold;
}