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

body {
  /* overflow: hidden; */
}

@font-face {
  font-family: "Nunito SemiBold";
  src: url("./assets/fonts/Nunito-SemiBold.ttf");
}

@font-face {
  font-family: "Nunito Bold";
  src: url("./assets/fonts/Nunito-Bold.ttf");
}

@font-face {
  font-family: "Nunito ExtraBold";
  src: url("./assets/fonts/Nunito-ExtraBold.ttf");
}

.main-bg {
  background: #e5e5e5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.logo {
  margin-top: 32px;
  margin-bottom: 8px;
  position: relative;
}

.main-content {
  background-image: url("./assets/img/container-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  padding: 46px 0 66px;
  margin-top: 40px;
  margin-bottom: 60px;
  position: relative;
  max-width: 100%;
}

.main-content h1 {
  font-family: "Nunito ExtraBold", sans-serif;
  font-size: 32px;
  line-height: 44px;
  color: #e00f21;
  margin-bottom: 16px;
}

.main-content p {
  font-size: 18px;
  line-height: 22px;
  color: #0c0e0f;
  font-family: "Nunito SemiBold", sans-serif;
}

.main-content p.strong {
  line-height: 25px;
  font-family: "Nunito Bold", sans-serif;
}

/* .main-content p.strong.red {
  font-family: "Nunito ExtraBold", sans-serif;
  color: #e00f21;
  margin-bottom: 11px;
} */

.main-content .strong.red {
  margin-bottom: 11px;
}

.flex-wrapper {
  display: flex;
  justify-content: center;
}

.flex-wrapper .links {
  display: flex;
  flex-direction: column;
}

.main-content a {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
  text-decoration: none;
  font-size: 18px;
  line-height: 29px;
  font-family: "Nunito Semibold", sans-serif;
  color: #0c0e0f;
}

.main-content a svg {
  margin-right: 8px;
}

.bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e00f21;
  width: 100%;
  margin-top: auto;
  padding: 50px 0 48px;
}

.absolute-img {
  position: absolute;
  z-index: 2;
}

.top-group {
  top: 0;
  left: -300px;
}

.fork {
  left: 200px;
  top: 300px;
}

.right-group {
  right: 180px;
  top: 57px;
}

.half-onion {
  left: 180px;
  bottom: 48px;
}

.mushroom {
  right: 400px;
  bottom: 48px;
}

.potato {
  left: 500px;
  bottom: 30px;
}

.half-mushroom {
  right: -20px;
  bottom: 150px;
}

.pepper {
  right: 600px;
  bottom: 160px;
}

@media screen and (max-width: 1440px) {
  .fork {
    left: 50px;
  }

  .right-group {
    right: 50px;
  }

  .half-onion {
    left: 80px;
  }

  .mushroom {
    right: 200px;
  }

  .potato {
    left: 300px;
  }

  .pepper {
    right: 400px;
  }
}

@media screen and (max-width: 1280px) {
  .right-group {
    right: 0;
    z-index: 0;
  }

  .half-onion {
    left: 80px;
  }

  .mushroom {
    right: 100px;
  }

  .potato {
    left: 300px;
  }

  .pepper {
    right: 400px;
  }
}

@media screen and (max-width: 1200px) {
  .fork {
    left: -50px;
  }
}

@media screen and (max-width: 1024px) {
  .fork {
    z-index: 0;
  }

  .potato {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .fork {
    left: -150px;
    z-index: 0;
  }
  .right-group {
    right: -160px;
    z-index: 0;
  }

  .half-onion {
    left: 0;
  }

  .mushroom {
    right: 50px;
  }

  .pepper {
    display: none;
  }

  .half-mushroom {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .logo img {
    max-width: 100%;
  }

  .fork {
    display: none;
  }
  .right-group {
    display: none;
  }

  .half-onion {
    left: -57px;
    transform: scale(0.6);
    bottom: 100px;
  }

  .mushroom {
    right: 0;
    bottom: -58px;
    transform: scale(0.8);
  }

  .main-content {
    margin-bottom: 100px;
    background-size: cover;
    background-position: center;
    padding: 46px 15px 66px;
  }
}
