html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 3rem;
  line-height: 1.3;
  background-color: hsl(248, 73%, 39%);
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

.header a, .header a:visited, .header a:hover {
  text-decoration: none;
}
.header nav {
  padding: 24px;
}
.header__mopp {
  background-color: hsl(0, 0%, 0%);
}
.header__link a {
  color: white;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 24px;
  font-size: 1rem;
  background-color: hsl(0, 0%, 0%);
  color: white;
}

.text {
  padding: 24px;
  font-size: 2rem;
}
.text_title {
  font-size: 4rem;
  color: black;
}
.text_t {
  color: black;
}
.text_f {
  flex: 1;
  text-align: start;
}
.text_c {
  text-align: center;
  font-size: 0.5rem;
}
.text_links {
  padding-left: 80px;
  font-size: 2rem;
  list-style: disc;
}
.text_links a, .text_links a:visited {
  text-decoration: none;
  color: black;
}
.text_links a:hover {
  color: blue;
}/*# sourceMappingURL=style.css.map */