* {
  box-sizing: border-box;
}

html {
  background-color: #080808;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;

  background-color: #080808;
  color: #f2f2f2;

  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;

  padding: 48px 68px 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background-color: #111111;

  border: 1px solid #3b3b3b;
  border-radius: 0 0 24px 24px;
}

.main {
  flex: 1;
}

.brand {
  margin-bottom: 30px;

  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.content {
  width: 650px;
  max-width: 100%;
}

.headline {
  margin-top: 0;
  margin-bottom: 24px;

  font-size: 54px;
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -2px;
}

.body-copy {
  width: 620px;
  max-width: 100%;

  color: #b8b8b8;

  font-size: 17px;
  line-height: 1.55;
}

.body-copy p {
  margin-top: 0;
  margin-bottom: 26px;
}

.body-copy strong {
  color: #f2f2f2;
  font-weight: 700;
}

.callout {
  margin-top: 30px;
  margin-bottom: 12px !important;
}

.button {
  padding: 16px 21px;

  background-color: #d71920;
  color: #ffffff;

  border: none;
  border-radius: 6px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;

  cursor: pointer;
}

.button:hover {
  background-color: #ee2028;
}

.footer {
  padding-top: 56px;
}

.experience-label {
  margin-top: 0;
  margin-bottom: 25px;

  color: #777777;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee {
  width: 100%;

  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;

  width: max-content;

  animation: scroll-logos 28s linear infinite;
}

.logo-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;

  gap: 100px;
  padding-right: 100px;
}

.company-logo {
  width: auto;
  height: 34px;
  max-width: 190px;

  flex-shrink: 0;
  object-fit: contain;

  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: 27px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #777777;

  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: #777777;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f2f2f2;
}

@keyframes scroll-logos {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

@media (max-width: 700px) {

  .page {
    padding: 30px 24px 22px;

    border-radius: 0;
  }

  .brand {
    margin-bottom: 48px;
  }

  .headline {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .body-copy {
    font-size: 16px;
  }

  .logo-group {
    gap: 70px;
    padding-right: 70px;
  }

  .company-logo {
    height: 28px;
    max-width: 150px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

}