@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
}
@media screen and (min-width: 768px), (max-width: 481px) {
  .tablet {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .mobile {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .mobile-tablet {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .tablet-desktop {
    display: none;
  }
}
.board-page {
  height: 100%;
}

html,
body {
  line-height: 1.5rem;
}
@media screen and (max-width: 480px) {
  html,
  body {
    font-size: 1.2rem;
  }
}

html,
body {
  margin: 0;
  font-family: "Roboto", "Arial", sans-serif;
  color: #1e1e1e;
  letter-spacing: 0.05px;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
}
html input,
body input {
  padding: 0.5rem;
}
html .button,
body .button {
  height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5rem;
  background-color: rgb(157, 239, 157);
  cursor: pointer;
  color: #1e1e1e;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 1.1rem;
  border: 0;
  font-family: "Roboto", "Arial", sans-serif;
  box-shadow: 0.1rem 0.1rem 0.4rem 0.1rem rgba(0, 0, 0, 0.2);
}
html .button:hover,
body .button:hover {
  cursor: pointer;
}
html .button.primary,
body .button.primary {
  background-color: rgb(14, 13, 58);
}
html .button.secondary,
body .button.secondary {
  background-color: lightpink;
}
@media screen and (max-width: 480px) {
  html .button,
  body .button {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=global.css.map */
