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

html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, ul, ol, p, figure {
  margin: 0;
  padding: 0;
}

:root {
  /* Aqua */
  --color-primary: #0A7267;
  --color-button: #16A394;
  --color-link: #16A394;
  --color-link-active: #28dcc7;
  --color-button-hover: #24c0ae;
}

body {
  background: #141417;
  color: #CCC;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  font-size: 1rem;
}

a {
  color: var(--color-link);
  border-bottom: 1px solid var(--color-link);
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: var(--color-link-active);
  border-bottom: 1px solid var(--color-link-active);
  transition: 0.17s ease-in-out all;
}

/* Shutdown Banner
   ========================================================================== */

.shutdown-banner {
  width: 100%;
  background-color: #2a1f1f;
  border-bottom: 2px solid #8b3030;
  padding: 12px 0;
  position: relative;
  top: 0;
  z-index: 1000;
}

.shutdown-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.shutdown-banner__content span {
  color: #ffcccc;
  font-weight: 500;
}

.shutdown-banner__content a {
  color: #ff9999;
  border-bottom: 1px solid #ff9999;
  font-weight: 500;
}

.shutdown-banner__content a:hover,
.shutdown-banner__content a:focus,
.shutdown-banner__content a:active {
  color: #ffcccc;
  border-bottom: 1px solid #ffcccc;
}

/* Header
   ========================================================================== */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  background: #141417;
  padding: 0 1rem;
}

.header h1 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
}


@media (min-width: 700px) {

  .header h1 {
    font-size: 1.25rem;
  }

}

.header h1 img {
  background: var(--color-primary);
}

.header h1 a {
  display: flex;
  align-items: center;
  border: none;
  gap: 0.75rem;
  color: #FFF;
  text-decoration: none;
  padding: 1rem;
}

.header h1 a:hover,
.header h1 a:focus {
  background: rgba(255,255,255,0.1);
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav ul {
  list-style: none;
  display: flex;
}

.header nav li a {
  color: #FFF;
  text-decoration: none;
  padding: 1rem;
  display: inline-flex;
  white-space: nowrap;
  border: none;
}

.header nav li a:hover,
.header nav li a:focus,
.header nav li a[aria-current] {
  background: rgba(255,255,255,0.1);
}

/* Content
   ========================================================================== */

.content p {
  margin: 1rem 0;
}

.content ul {
  list-style: disc;
  padding: 0 0 0 1rem;
  margin: 1rem 0;
}

.content ol {
  list-style: decimal;
  padding: 0 0 0 1rem;
  margin: 1rem 0;
}

.content h1,
.content h2 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.1;
  color: #FFF;
}

.content h3,
.content h4 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFF;
}


/* Intro
   ========================================================================== */

.intro-holder {
  max-width: 80rem;
  text-align: center;
  padding: 5rem 1rem;
  margin: 0 auto;
}

.intro {
  color: #FFF;
  text-wrap: balance;
  margin: 0 auto 2rem;
  font-size: 2rem;
}

@media (min-width: 700px) {

  .intro {
    font-size: 2.5rem;
  }

}

/* Button
   ========================================================================== */

.button {
  background: var(--color-button);
  color: #FFF;
  padding: 0.75rem 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  align-self: center;
  border-radius: 0.25rem;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.button:hover,
.button:active,
.button:focus {
  color: #FFF;
  border: none;
  background: var(--color-button-hover);
}

/* Quote
   ========================================================================== */


.quote-wrapper {
  max-width: 70rem;
  text-align: center;
  margin: 3rem auto;
}

.quote-wrapper blockquote p:first-child {
  margin-bottom: 1rem;
}

@media (min-width: 700px) {

  .quote-wrapper blockquote p:first-child {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

}

cite {
  font-style: normal;
}

/* Avatar
   ========================================================================== */

.avatar {
  border-radius: 100%;
}

/* Bento box
   ========================================================================== */

.bento-box-wrapper {
  margin: 0 auto;
  padding: 1rem;
}

.bento-box {
  max-width: 70rem;
  display: grid;
  gap: 1rem;
  margin: 3rem auto;
}

@media (min-width: 800px) {

  .bento-box-wrapper {
    padding: 2rem;
  }

  .bento-box {
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 2rem;
  }

}

.bento-box .box {
  padding: 3rem;
  background: #1D1C20;
  border: 1px solid #2F2E31;
  border-radius: 4px;
  font-size: 1.5rem;
  color: #FFF;
}

@media (min-width: 800px) {

  .bento-box .box {
    font-size: 2rem;
    padding: 4rem;
  }

  .bento-box .box {
    min-height: 22.5rem;
  }


}


/* Width wrapper
   ========================================================================== */

.width-wrapper {
  max-width: 740px;
  margin: 3rem auto;
  padding: 1rem;
}


/* Video
   ========================================================================== */

.video-wrapper {
  background: #141417 url(./media/bg.svg) repeat-x center center;
  background-size: 1920px 907px;
}

.video-wrapper video {
  width: 90%;
  max-width: 80rem;
  max-height: 43.75rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
  display: block;
}

/* Bottom BG wrapper
   ========================================================================== */

.bottom-cta-wrapper {
    background: #141417 url(./media/bg.svg) repeat-x top center;
    background-size: 1920px 907px;
}

/* Bottom CTA
   ========================================================================== */

.bottom-cta {
  max-width: 70rem;
  padding: 1rem;
  margin: 6rem auto;
  text-wrap: balance;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 700px) {
  .bottom-cta {
    padding: 0 3rem;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }

}

.bottom-cta p {
  font-size: 2rem;
  color: #FFF;
}

/* Footer
   ========================================================================== */

.footer {
  padding: 1rem;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: #FFF;
  border-bottom-color: rgba(255,255,255,0.3);
}

/* Utility classes
   ========================================================================== */

.muted {
  opacity: .65;
}
