
body {
    font-family: "EB Garamond", serif;
    background-color: #161616;
    color: #e8e8e8;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #1b1b1b;
    color: #e8e8e8;
    text-align: center;
    padding: 20px;
    font-size: 2rem;
    font-family: "Uncial Antiqua", cursive;
    border-bottom: 3px solid #424242;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.8);
}

nav {
    display: flex;
    justify-content: center;
    background-color: #000000;
    border-bottom: 2px solid #555;
    padding: 10px 0;
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffffff;
}

main {
    max-width: 900px;
    margin: 30px auto;
    background-color: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #555;
}

h1, h2 {
    font-family: "Uncial Antiqua", cursive;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

h2 {
    font-size: 1.5rem;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #bbbbbb;
}

select, input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #e8e8e8;
    font-size: 1rem;
}

button {
    background-color: #444;
    color: #e8e8e8;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #494949;
    color: #000;
    transform: scale(1.05);
}

#output-field {
    font-family: "EB Garamond", serif;
    font-size: 1.2rem;
    line-height: 1.8;
    white-space: pre-wrap;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #444;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    color: #dcdcdc;
    overflow-y: auto;
    max-height: 400px;
}

/* Add a glow effect to headers */
h1 {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #969696, 0 0 10px #ffffff;
    }
    to {
        text-shadow: 0 0 20px #969696, 0 0 30px #ffffff;
    }
}

/* Pseudo-illuminated decorations */
hr {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, #ffffff, #1d1d1d, #ffffff);
    margin: 20px 0;
}

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

a:hover {
    text-decoration: underline;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2a2a2a;
}

::-webkit-scrollbar-thumb {
    background: #ffdd57;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}
