/* Define Segoe UI Emoji font */
@font-face {
    font-family: 'Segoe UI Emoji';
    src: url('/styles/seguiemj.ttf') format('truetype');
}

/* Force Segoe UI Emoji font for emojis */
body,
h1,
ul,
li,
a,
pre,
button {
    font-family: 'Segoe UI Emoji', Arial, sans-serif;
}

/* Rest of your existing CSS styles */
h1 {
    color: #ffffff;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: underline;
}

pre {
    white-space: pre-wrap;
    background-color: #141414;
    padding: 10px;
    border-radius: 5px;
}

button {
    background-color: #d248cf;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #8232a1;
}
