@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #f6f8fc;
}

.content {
  padding: 1rem;
  width: 100vw;
  height: 100vh;
  background-color: #FFF;
}

@media screen and (min-width: 991.9px) {
  .content {
    max-width: 991.9px;
    height: auto;
    margin: 1rem auto;
  }
}