body {
    font-family: Arial, sans-serif;
    background-color: #03071E;
    color: #CCCCCC;
    margin: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background-color: #0E1328;
    padding: 25px;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
}

h1,
h2 {
    color: #F2F2F2;
}

label {
    display: block;
    margin-top: 1rem;
}

textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid #999999;
    border-radius: 12px;
    color: #CCCCCC;
}

button {
    padding: 12px 20px;
    font-size: 16px;
    background: #e85d04;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
}

a {
    color: #FFD166;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.output {
    margin-top: 40px;
}