@import 'https://fonts.googleapis.com/css?family=Signika:wght@500&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0';
* {
  padding: 0;
  margin: 0;
  outline: none;
}

body {
  font-family: "Open Sans";
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  word-wrap: break-word;
  color: #666;
  font-weight: 300;
}
body nav {
  display: flex;
  margin-left: auto;
}
body nav ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
body nav ul li {
  list-style-type: none;
  display: flex;
  align-items: stretch;
}
body nav ul li a {
  text-decoration: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
}
@media (max-width: 799px) {
  body nav ul li a {
    transition: background-color 0.5s ease;
  }
}
body h1, body h2, body h3, body h4 {
  color: #333;
}
body h1 {
  font-weight: 500;
  margin-bottom: 24px;
}
body h2 {
  font-weight: 400;
}
body h3 {
  font-size: 18px;
}
body h4 {
  font-size: 16px;
  font-weight: 400;
}
body header {
  display: flex;
  border-bottom: 1px solid #ccc;
  background-color: #872558;
  border-left: none;
  border-right: none;
  margin: 0 0 24px 0;
  z-index: 2;
}
@media (max-width: 799px) {
  body header {
    margin: 0;
    position: sticky;
    top: 0;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  }
}
body header nav .menu-btn {
  position: absolute;
  display: inline-block;
  right: 0;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 30px;
  z-index: 3;
}
@media (min-width: 800px) {
  body header nav .menu-btn {
    display: none;
  }
}
@media (max-width: 799px) {
  body header nav ul {
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: #872558;
    width: 250px;
    flex-direction: column;
    align-items: first baseline;
    justify-content: start;
    padding-top: 80px;
    transition: all 0.15s;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  }
}
body header nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 799px) {
  body header nav ul li {
    display: block;
    width: 100%;
  }
}
body header nav ul li a {
  padding: 0 16px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  height: 40px;
}
@media (min-width: 800px) {
  body header nav ul li a {
    border-radius: 24px;
  }
}
body header nav ul li a:hover {
  color: #ccc;
}
body header nav ul li a.active {
  color: #872558;
  background-color: #fff;
}
@media (max-width: 799px) {
  body header nav ul li a {
    color: #fff;
    padding: 16px 24px;
  }
  body header nav ul li a:hover {
    color: #ccc;
  }
  body header nav ul li a.active {
    color: #872558;
    background-color: #fff;
  }
}
body header nav ul li a.twitter-icon {
  fill: #fff;
  transition: fill 0.25s ease;
  transform: scale(0.8);
}
body header nav ul li a.twitter-icon:hover {
  fill: #ccc;
}
@media (max-width: 799px) {
  body header nav ul li a.twitter-icon {
    fill: #fff;
    display: inline-block;
  }
}
@media (max-width: 799px) {
  body header nav[data-open=false] ul {
    right: -250px;
  }
  body header nav[data-open=false] a.menu-btn .opened {
    display: inline-block;
  }
  body header nav[data-open=false] a.menu-btn .closed {
    display: none;
  }
}
@media (max-width: 799px) {
  body header nav[data-open=true] ul {
    right: 0px;
  }
  body header nav[data-open=true] a.menu-btn {
    color: #fff;
  }
  body header nav[data-open=true] a.menu-btn .closed {
    display: inline-block;
  }
  body header nav[data-open=true] a.menu-btn .opened {
    display: none;
  }
}
body header h1 {
  padding: 16px;
  font-family: "Signika";
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 799px) {
  body header h1 {
    padding: 16px 24px;
    font-size: 22px;
  }
}
body header h1 a {
  text-decoration: none;
  color: #fff;
  transition: color 0.25s ease;
}
body header h1 a:hover {
  color: #ccc;
}
body main {
  padding: 16px 24px;
  animation: fadeInAnimation ease 0.5s;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body main {
    width: 100%;
    animation: none;
  }
}
body main p {
  margin-bottom: 16px;
  line-height: 24px;
}
body main a {
  color: #872558;
  text-decoration: none;
  transition: text-decoration-color 0.25s ease;
  text-decoration: underline;
  text-decoration-color: #fff;
}
body main a:hover {
  text-decoration-color: #872558;
}
body footer {
  background-color: #333;
  margin-top: auto;
  display: flex;
  border-top: 1px solid #f0f0f0;
  justify-content: center;
  align-items: center;
  color: #ccc;
  padding: 0 24px;
}
@media (max-width: 799px) {
  body footer {
    justify-content: left;
    align-items: left;
    padding: 16px 0;
  }
}
body footer span {
  padding: 0 16px;
}
@media (max-width: 799px) {
  body footer nav {
    display: none;
  }
}
body footer nav a {
  padding: 16px 16px;
  color: #ccc;
}
body footer nav a:hover {
  text-decoration: underline;
}
body footer nav a.twitter-icon {
  fill: #ccc;
  transform: scale(0.8);
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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