body {
    background-color: #0e0e0e;
    color: #00ffcc;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #1a1a1a;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: stretch;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

input, textarea, select {
    width: 300px;
    padding: 10px;
    border: 1px solid #00ffcc;
    border-radius: 5px;
    background-color: #0e0e0e;
    color: #00ffcc;
    font-size: 1em;
    margin: 10px;
    transition: all 0.3s, color 0.3s;
}

option {
    background-color: #0e0e0e;
    color: #00ffcc;
}

button {
    color: #00ffcc;
    text-decoration: none;
    border: 2px solid #00ffcc;
    padding: 10px 10px;
    margin: 20px 0;
    border-radius: 5px;
    transition: all 0.3s, color 0.3s;
    background-color: #0e0e0e;
}

button:hover {
    background-color: #00ffcc;
    color: #0e0e0e;
}

strong {
    color: #ff0000;
}

p {
    font-size: 1.5em;
}

a {
    color: #00ffcc;
    text-decoration: none;
    border: 2px solid #00ffcc;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s, color 0.3s;
}

div {
    margin: 20px;
}

a:hover {
    background-color: #00ffcc;
    color: #0e0e0e;
}
