* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0e0f0f;
  min-width: 450px;
  font-family: "Hind", sans-serif;
  color: #e0e0e0;
  line-height: 1.8;
}

a {
  color: #41d4ec;
  text-decoration: none;
}

a:hover {
  color: #92e1ee;
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: #4c98e7;
  font-family: "Marko One", sans-serif;
  margin-block-end: 1rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  margin-block: 1rem;
}

h1 {
  color: #cdcdcd;
  font-size: 3rem;
  line-height: 1.1;
  text-align: center;
}
h1 span {
  color: #007cff;
  display: block;
  font-size: 8rem;
  letter-spacing: -0.3rem;
}
@media (max-width: 660px) {
  h1 span {
    font-size: 2em;
  }
}
@media (max-width: 660px) {
  h1 {
    font-size: 2em;
  }
}

img {
  max-width: 100%;
  border-radius: 5px;
}

ul {
  list-style-type: square;
  padding-inline: 2rem;
}

p {
  margin-block: 1rem;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.header-layout img {
  max-width: 50px;
}
.header-layout h2 {
  margin: 0;
  color: #41d4ec;
}
.header-layout h2:hover {
  color: #92e1ee;
}
.header-layout a:hover {
  text-decoration: none;
}
@media (max-width: 800px) {
  .header-layout {
    flex-direction: column;
  }
}

.primary-nav ul {
  font-size: 1.7rem;
  font-weight: bold;
  display: flex;
  list-style-type: none;
}
@media (max-width: 660px) {
  .primary-nav ul {
    background-color: #0e0f0f;
    display: block;
    position: absolute;
    right: 0;
    top: 75px;
  }
}
.primary-nav li {
  padding: 0.8rem;
}

#mobile-nav-icon {
  width: 2rem;
  display: none;
}
@media (max-width: 660px) {
  #mobile-nav-icon {
    display: block;
    right: 20px;
    position: absolute;
    top: 25px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding-block: 1rem;
}
@media (max-width: 1100px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  background-color: #212527;
  padding: 0.8rem;
  border-radius: 6px;
  text-align: center;
}
.gallery-item p {
  font-size: 1.5rem;
}

.section {
  background-color: #171a1a;
  padding: 3.5rem;
}
@media (max-width: 800px) {
  .section {
    padding-inline: 1rem;
  }
}

.section-alternate {
  background-color: #0e0f0f;
  padding: 3.5rem;
}
@media (max-width: 800px) {
  .section-alternate {
    padding-inline: 1rem;
  }
}

.section-special {
  background-color: #15233a;
  padding: 3.5rem;
}
@media (max-width: 800px) {
  .section-special {
    padding-inline: 1rem;
  }
}

.wrapper-wide, .wrapper-medium, .wrapper-narrow {
  margin-inline: auto;
}

.wrapper-narrow {
  max-width: 750px;
}

.wrapper-medium {
  max-width: 1100px;
}

.wrapper-wide {
  max-width: 1330px;
}

.text-center {
  text-align: center;
}

.two-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  padding-block: 0.8rem;
}
.two-columns img {
  align-self: center;
  margin: auto;
  width: 100%;
}
@media (max-width: 1100px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

.flex-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.external::after {
  margin-left: 0.3em;
  width: 0.8em;
  display: inline-block;
  content: url("/assets/newtab.svg");
}

.hidden {
  display: none;
}

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