/* Universal */

* {
  margin: 0; padding: 0;
  font-size: 15px;
  font-weight: normal;
  font-family: KoHo;
  box-sizing: border-box;
  text-align: left;
}

*:focus {
  outline: none;
}

/* Button and Anchor */

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

a {
  text-decoration: none;
}

/* Utility */

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.icon {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

/* Clarity */

body {
  padding: 20px
}

/* Scrollbars */

::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(199, 199, 199);
}

/*  */

pre {
  font-family: Consolas, monospace;
}