img.logo {
    max-width: 2rem;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button {
    font-family: "gotham", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.025rem;
    line-height: 1.5;
    padding: 2rem;
    color: #222;
}

h1 {
    font-family: "new-astro", sans-serif;
    font-weight: 700;
    font-style: normal;
}

article {
    max-width: 40rem;
    margin: 0 auto;
}

p.intro {
    font-size: 1.5rem;
}

address {
    font-style: normal;
}

a {
    color: blue;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
}

fieldset {
    border: 1px solid #bbb;
    padding: 2rem;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 1rem;
    resize: vertical;
    font-family: monospace;
    font-size: .85rem;
}

button[type=submit] {
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    background-color: #e7e7e7;
    color: black;
}

button[type=submit]:hover {
    background-color: #ddd;
}