@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  font: 400 14px Roboto, sans-serif;
  /* background: #f0f0f5; */
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

input,
button,
textarea {
  font: 400 18px Roboto, sans-serif;
}

button {
  cursor: pointer;
}
