body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: #333333;
    border-radius: 10px;
    text-align: center;
}

h3 {
    font-size: 1.5em;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

label {
    align-self: flex-start;
    font-size: 12px;
    margin-bottom: 5px;
}

input, textarea {
    width: 80%;
    padding: 10px;
    margin: 0 auto;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #000000;
    background-color: #ffffff;
    text-align: left;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #ffffff;
    background-color: #555555;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff0000;
}

button:active {
    background-color: #00ff00;
}

.pieform {
    font-size: 0.75em;
}

@media screen and (max-width: 600px) {
    h3 {
        font-size: 1.25em;
    }

    label, input, textarea, button {
        font-size: 10px;
    }

    .pieform {
        font-size: 0.5em;
    }
}
