* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
}

header h1 {
    text-align: center;
}

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

main form label {
    font-size: 1rem;
}

main form p {
    color: gray;
}

main form input {
    margin-bottom: 10px;
}

main form section article {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

main form section article input:nth-child(1) {
    margin-top: 2%;
    margin-right: 1%;
}

main form section article input:nth-child(2) {
    margin-top: 2%;
    margin-left: 1%;
}

footer {
    display: flex;
    justify-content: center;
}

footer a {
    text-decoration: none;
    color: white;
}