body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f8f8f2;
    background-color: #282a36;
    margin: 0;
    padding: 0;
}

header {
    background-color: #44475a;
    color: #f8f8f2;
    text-align: center;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

button {
    background-color: #6272a4;
    color: #f8f8f2;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #8be9fd;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

h2 {
    color: #ff79c6;
}

.custom-text {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    color: #f8f8f2; /* Light text color for dark background */
    line-height: 1.6;
    margin-bottom: 1em;
}

.custom-text .custom-highlight {
    background-color: #50fa7b; /* A brighter color for better contrast */
    color: #282a36; /* Dark text on light background */
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: bold;
}