body {
    background-image: url('images/starwars.jpg');
    background-size: cover;
    color: white;
    text-align: center;
}

.container {
    background-color: red;
    padding: 20px;
    margin: 50px auto;
    align-items: center;
    width: 300px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

button {
    background-color: white;
    font-size: 20px;
    color: red;
    padding: 10px;
    border-radius: 10px;
    border: none;
}
