body {
    background-color: black;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

h1 {
    color: white;
}

img {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    margin: auto;
}

p {
    color: white;
}

.form-container {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.form-container form {
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    width: 100%;
    margin-left: 5px;
}

.form-container form label {
    margin-bottom: 10px;
}

.form-container form input {
    width: 95%;
    margin-bottom: 10px;
}

.form-container form select {
    margin-bottom: 10px;
    width: 95%;
}

.form-container form button {
    display: flex;
    justify-content: center;
    margin: auto;
}