* {
    font-family: 'Segoe UI', sans-serif;
}

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

#container {
    margin: 30px 50px;
    width: 700px;
}

label {
    display: block;
    margin: 10px 0;
}

hr {
    border: 0;
    border-top: 1px solid lightgrey;
}

button {
    font-size: 16px;
    cursor: pointer;
    background: white;
    border: 1px solid #afafaf;
    border-radius: 5px;
}

a {
    color: green;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.madeWithLove {
    font-size: 14px;
    margin-top: -16px;
    color: #333;
}

@media (max-width: 450px) {
    #container {
        margin: 15px;
    }
}

h1 {
    margin-top: -5px;
}