* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

.btn {
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

#green {
    background-color: green;
}

#red {
    background-color: red;
}

.parent {
    height: 500px;
    width: 100%;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form {
    height: 400px;
    width: 300px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input {
    margin-top: 5%;
}

.correct {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: end;
}