*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
    background-image: linear-gradient(to bottom right, rgb(1, 1, 37), rgb(37, 0, 0));
}


.main-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 160px;
  color: rgb(209, 206, 206);
}

.info-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.logo {
  height: 300px;
  filter: drop-shadow(.5px .5px .5px rgba(255, 255, 255, 0.5));
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-top: -40px;
}

h2 {
  font-size: 1rem;
  font-weight: 400;
}

.gear {
  width: 300px;
}

@media (max-width: 1200px) {
  .main-container {
    padding: 0 80px;
  }

  .logo {
    height: 250px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 0.9rem;
  }

  .gear {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 40px;
  }

  .info-container {
    align-items: center;
    text-align: center;
  }

  .logo {
    height: 250px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 0.8rem;
  }

  .gear {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .main-container {
    padding: 0 20px;
  }

  .logo {
    height: 220px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 0.8rem;
  }

  .gear {
    width: 180px;
  }
}
