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

* , :after, :before {
  box-sizing: border-box;
  outline: none;
}
html {
  height: 100%;
}
html, body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  font-size: 16px;
  color: #6f7077;
  padding: 0;
  margin: 0;
}
body {
  font-size: 100%;
  min-height: 100%;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #3aa8f5;
  transition: all 0.2s ease-out;
}
a:hover {
  color: #0072c1
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background: #f0f0f0;
  border-radius: 5px;
  color: #fff;
  padding: 20px 30px;
  transition: all 0.2s ease-out;
}
.button i {
  font-size: 1.2rem;
  margin-right: 5px;
}

/* Medium */
@media (max-width:1020px) {
  html, 
  body {
      font-size: 14px;
  }
}

/* Small */
@media (max-width:640px) {
}