body {
    background: #cfaad1;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 500px;
}

h1 {
    font-size: 3,5em;
}

h2 {
    font-size: 2,5em;
}

hr {
    border: 1px solid white;
    width: 100%;
    margin: 10px auto;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li {
    font-size: 1.2em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

li img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}


a {
    color: inherit; /* Zachowuje kolor tekstu */
    text-decoration: none; /* Usuwa podkreślenie */
}

a:visited {
    color: inherit; /* Kolor linku nie zmienia się po odwiedzeniu */
}