
body {
    background-color: #0e0e0e;
    background-image: radial-gradient(circle at top left, #1a1a1a, #0d0d0d);
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;

    justify-content: space-between;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, #ffffff22 20%, transparent),
        radial-gradient(1px 1px at 80% 40%, #ffffff11 20%, transparent),
        radial-gradient(1px 1px at 50% 70%, #ffffff18 20%, transparent);
    background-repeat: repeat;
    animation: starsScroll 90s linear infinite;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes starsScroll {
    from { transform: translate(0, 0); }
    to { transform: translate(-50%, -50%); }
}



header {
    background-color: #1f1f1f;
    padding: 1rem;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav a {
    color: #f0f0f0;
    margin-left: 1rem;
    text-decoration: none;
}
main {
    padding: 2rem;
}
.form-container {
    max-width: 600px;
    margin: auto;
    background-color: #1f1f1f;
    padding: 1.5rem;
    border-radius: 8px;
}
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
input, textarea, button {

    width: 90%;
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
}
fieldset {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    padding: 10px;
    margin: 0;
    border: 1px solid #444;
}
button {
    background-color: #3a3a3a;
    cursor: pointer;
}
button:hover {
    background-color: #5a5a5a;
}
.success { color: #0f0; }
.error { color: #f55; }
footer {
    text-align: center;
    padding: 1rem;
    background-color: #1f1f1f;
    color: #aaa;
}

.entry {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.entry strong {
    display: block;
    margin-bottom: 0.5rem;
}
