:root {
  --blue: #135a76;
  --blue-light: #67b3b6;
  --yellow: #f9e85a;
  --red: #ff4647;
  --gray: #c5c5c5;
  --white: #ffffff;
  --black: #000000;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--red);
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 1200px;
  height: 100vh;
  gap: 60px;
  padding-left: 32px;
  padding-right: 32px;
}

@media screen and (max-width: 992px) {
  .container {
    gap: 60px;
  }
}

.logo {
}

.logo img {
  width: 360px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .logo img {
    max-width: 280px;
    height: auto;
  }
}

.payoff {
}

.payoff h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  margin: 0;
  padding: 0;
  color: var(--white);
  -webkit-text-stroke: 1px var(--gray);
}

@media screen and (max-width: 992px) {
  .payoff h1 {
    font-size: 36px;
  }
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.socials span {
  font-family: "Comic Book";
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: var(--gray);
  display: block;
}
.socials ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: auto;
  @media screen and (max-width: 992px) {
    flex-wrap: wrap;
    max-width: 300px;
  }


}
.socials ul li {
}
.socials ul li a {
  text-decoration: none;
}

.socials ul li a i {
  font-size: 32px;
  color: var(--gray);
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;

  @media screen and (max-width: 992px) {
    /* font-size: 40px; */
    width: 68px;
    height: 68px;
  }
}

/**
 * Red declination
 *
*/
