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

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.hero {
  background-color: #ff3b1f;
  color: #ffffff;
  position: relative;
  min-height: 100vh;
  padding: 120px 80px;
  overflow: hidden;
}

.hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(140px, 18vw, 260px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 1em;
  position: relative;
  z-index: 1;
}

.hero__illustration {
  position: absolute;
  right: 0px;
  bottom: 0px;
  height: 100vh;
  max-height: 1200px;
  z-index: 2;
  pointer-events: none;
}

.hero-illustration-error {
  position: absolute;
  right: 240px;
  bottom: 0px;
  height: 100vh;
  max-height: 1200px;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 320px;
  z-index: 3;
}

.hero__content h2 {
  font-family: "Antonio", sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.hero__content p {
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-decoration: none;
  color: #ffffff;
}

.header {
  color: #ffffff;
  position: absolute;
  top: 60px;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.header__logo img {
  width: 32px;
}

.header__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.header__nav a {
  font-family: "Antonio", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.main-container {
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
}

.main-container .header-error {
  position: absolute;
  top: 60px;
  left: 80px;
  right: 80px;
  color: #232323;
  z-index: 10;
}

.main-container .hero-error {
  color: #232323;
  position: relative;
  min-height: 100vh;
  padding: 120px 80px;
  overflow: hidden;
}

.main-container .hero-error .hero-title-error {
  font-family: "Anton", sans-serif;
  font-size: clamp(140px, 18vw, 260px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 0.5em;
  left: 420px;
  position: absolute;
  z-index: 1;
}

.main-container .hero-error .hero-content-error {
  position: absolute;
  left: 420px;
  top: 58%;
  transform: translateY(-50%);
  max-width: 400px;
  z-index: 3;
}

.main-container .hero-error .hero-content-error h2 {
  font-family: "Antonio", sans-serif;
  font-size: 90px;
  margin-bottom: 16px;
}

.main-container .hero-error .hero-content-error p {
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.main-container .hero-error .hero-content-error .social-row {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 40px;
  color: #232323;
  margin-top: 20px;
}

.main-container .hero-error .hero-content-error .social-row a .icon_black {
  font-size: 40px;
  color: #232323;
}
