@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
  font-family: 'Public Sans', sans-serif;
}

h1,
h2 {
  font-weight: 700;
}

:root {
  --main-area-bg: #111111;
  --main-area-font-color: #f5f5f5;
  --bg-color: #ffffff;
  --font-color: #111111;
  --header-bg: #A7F432;
  --header-color: #111111;
  --footer-bg: #222222;
  --footer-color: #f5f5f5;
  --comment-color: #808080cc;
  --brand-color: #A7F432;
  --link-color: #3186f5;
  --highlighted-bg-color: #ffeeab;
  --highlighted-font-color: #000000;
  --positive-color: #A7F432;
  --negative-color: #E60023;
  --positive-light-color: #e1f5c4;
  --negative-light-color: #e5b8be;
}

header div.header-content {
  flex-direction: row;
  gap: 1rem;
}

header div.header-content h1 a#logo {
  display: block;
  width: 18rem;
  height: 5rem;
}

header div.header-content>nav>ul {
  flex-wrap: wrap;
  row-gap: 0.75rem;
  justify-content: center;
  text-align: center;
}

header div.header-content>nav>ul a {
  font-weight: normal;
}

main.cover-main-area section {
  gap: 1.25rem;
}

main.cover-main-area section.highlighted.promo {
  gap: 0;
}

section.highlighted:not(.promo) {
  padding-right: 210px;
  background-image: url('mascot.png');
  background-position: 107% 50%;
  background-repeat: no-repeat;
}

.project-logo {
  background: url('logo.png') 50% 50% no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: -10000px;
  min-width: 6rem;
}

.main-area {
  overflow: hidden;
  padding: 2rem 0;
}

@media only screen and (max-width: 1279px) {
  section.highlighted:not(.promo) {
    padding-right: 160px;
    background-position: 106% 50%;
    background-size: 180px auto;
  }
}

@media only screen and (max-width: 1023px) {
  section.highlighted:not(.promo) {
    background-position: 107% 90%;
    background-size: 160px auto;
  }

  header div.header-content>nav>ul {
    gap: 0.5rem;
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 799px) {
  header div.header-content {
    padding: 1rem 0 !important;
    gap: 1rem;
    flex-direction: column;
  }
}

@media only screen and (max-width: 599px) {
  section.highlighted:not(.promo) {
    background-position: 55% 10px;
    background-size: 240px auto;
    padding-right: 0;
    padding-top: 240px;
  }
}

@media only screen and (max-width: 359px) {
  header div.header-content h1 a#logo {
    width: 80vw;
  }
}