/* stylelint-disable no-descending-specificity */
@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Italic.ttf") format("ttf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Bold.ttf") format("ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-BoldItalic.ttf") format("ttf");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Black.ttf") format("ttf");
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-BlackItalic.ttf") format("ttf");
  font-weight: bolder;
  font-style: italic;
}
.cols-2 {
  display: flex;
}
.cols-2 > * {
  width: 50%;
}

* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Lato, sans-serif;
  color: #777777;
}

body {
  font-size: 20px;
  line-height: 1.5;
}
body > * {
  display: flex;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  color: #8877ff;
}
body a {
  text-decoration: none;
}
body button {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #ff33cc;
  color: #ffffff;
  cursor: pointer;
}
body > header {
  padding: 20px;
  justify-content: space-between;
  background-color: #ffffff;
  font-size: 15px;
  color: #8877ff;
  box-shadow: 0 0 40px -20px #8877ff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
body > header .branding,
body > header .nav {
  display: flex;
  align-items: center;
}
body > header .branding h1 {
  font-size: 20px;
  font-weight: bold;
  color: #8877ff;
}
body > header .branding h1 a {
  color: #8877ff;
}
body > header .nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
  font-weight: bold;
}
body > header .nav ul a {
  border-radius: 20px;
  padding: 5px 10px;
  color: #ff33cc;
}
body > header .nav ul a:hover {
  background-color: #ff33cc;
  color: #ffffff;
}
body > main {
  min-height: 100vh;
}
body > main > article {
  padding: 20px 80px;
  flex: 1;
}
@media screen and (width < 1024px) {
  body > main > article {
    padding: 20px 40px;
  }
}
body > main > article > h1 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}
body > main > aside {
  margin-top: 80px;
  padding: 20px;
  flex: 0 0 20%;
}
@media screen and (width < 1024px) {
  body > main > aside {
    display: none;
  }
}
body > main > aside > h1 {
  font-size: 20px;
}
body input[type=text],
body input[type=password],
body input[type=select],
body input[type=textarea] {
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 5px;
}
body > footer {
  padding: 20px;
  justify-content: center;
  font-size: 15px;
  font-style: italic;
}

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