body {
    background-color: black;
}

h1 {
    color: red;
}

.body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    color: red;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type='file'] {
    background-color: black;
    display: flex;
}

button {
    padding: 10px;
    border-color: red;
    border-radius: 10px;
    background-color: black;
    color: red;
}

button:hover {
    background-color: red;
    color: black;
}