@import url("https://fonts.googleapis.com/css2?family=AR+One+Sans:wght@600&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  color: #212121;
  height: 100%;
  margin: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: start;
}

.flex-start-start {
  display: flex;
  align-items: start;
  justify-content: start;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: end;
}

a {
  text-decoration: none;
  color: #212121;
}