@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
html,
body {
  height: 100%;
  width: 100%;
  padding: 20px;
}

body {
  color: white;
  display: flex;
  background-position: top right;
  background-image: url("bg.jpg");
  font-family: "Poppins";
  align-items: center;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
body h2 {
  font-size: 60px;
  font-weight: 600;
}
body h1 {
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 40px;
}
body .container {
  text-align: left;
  max-width: 1400px;
}
body .logo {
  height: 200px;
}
body .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px 50px;
  max-width: 600px;
}
body .link {
  display: flex;
  align-items: center;
  color: white;
  text-align: left;
  text-decoration: none;
  font-size: 18px;
  gap: 20px;
  line-height: 1.3;
}
body .link strong {
  display: block;
  font-weight: 600;
}
body .link i {
  font-size: 30px;
}
body .copy {
  margin-top: 60px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  body {
    background: #ebad26;
  }
  body h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  body h2 {
    text-align: center;
    font-size: 24px;
  }
  body .logo {
    height: 120px;
  }
  body .links {
    gap: 20px;
    margin: auto;
    justify-content: center;
  }
  body .raddar {
    margin-inline: auto;
    display: block;
  }
  body .link {
    gap: 15px;
    font-size: 16px;
  }
  body .link br {
    display: none;
  }
  body .link i {
    font-size: 24px;
  }
  body .copy {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
  }
}