html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: black;
    color: #00ff00;
    font-family: monospace;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5vh;
    min-height: 100vh;
}

.ascii-art {
    white-space: pre;
    text-align: center;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00;
    user-select: text;
    max-width: 900px;
}

.manifesto-container {
    margin-top: 5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    color: #005700;
}

.links-container {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 900px;
    width: 100%;
    justify-content: center;
}

.links-container a {
    color: #00ff00;
    text-decoration: none;
    font-family: monospace;
    font-size: 1rem;
    user-select: text;
    position: relative;
    white-space: nowrap;
    padding: 0.3em 0.5em;
}

.links-container a::before {
    content: "[";
    margin-right: 0.2em;
}

.links-container a::after {
    content: "]";
    margin-left: 0.2em;
}

.links-container a:hover {
    text-decoration: underline;
}

.manifesto-container :hover {
    color: #00ff00;;
}

.mail-container {
    margin-top: 3rem;
    text-align: center;
    color: #00ff00;
    font-family: monospace;
}

.mail-address {
    color: #00ff00;
}

.mail-address a {
    color: #00ff00;
    text-decoration: none;
    font-family: monospace;
}

.mail-address a:hover {
    text-decoration: underline;
}

.public-key {
    width: 40rem;
    max-width: 90vw;
    height: 15rem;
    background: black;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 1rem;
    font-family: monospace;
    resize: none;
}

form {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="url"] {
    padding: 1rem 1.5rem;
    font-family: monospace;
    font-size: 1.2rem;
    background: black;
    border: 1px solid #00ff00;
    color: #00ff00;
    outline-offset: 3px;
    width: 40rem;
    max-width: 90vw;
}

input[type="submit"] {
    background: #00ff00;
    border: none;
    color: black;
    font-weight: bold;
    font-family: monospace;
    cursor: pointer;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background: #00cc00;
}