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

html {
    min-height: 100vh;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

body {
    max-width: 100vw;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

body, input, textarea, button {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #140e04ef;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6, strong {
    font-weight: 700;
}

.title {
  text-align: center;
  margin: 20px 0;
  font-size: 2.5rem;
  color: #561219;
}
