@import url("https://fonts.googleapis.com/css2?family=Arimo: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;
}
@media (max-height: 700px) {
  html,
  body {
    height: auto;
  }
}

body {
  color: white;
  display: flex;
  background-image: url("../img/fdps.png");
  font-family: "Arimo";
  align-items: center;
}
body h1 {
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 60px;
  font-size: 30px;
}
body .container {
  text-align: center;
  max-width: 1400px;
}
body .logo {
  height: 200px;
}
body .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
  margin: auto;
  max-width: 800px;
}
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;
}
body .link i {
  font-size: 30px;
}
body .copy {
  margin-top: 60px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  body h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  body .logo {
    height: 300px;
  }
  body .links {
    gap: 20px;
  }
  body .link {
    gap: 15px;
    font-size: 16px;
  }
  body .link br {
    display: none;
  }
  body .link i {
    font-size: 24px;
  }
  body .copy {
    margin-top: 40px;
    font-size: 12px;
  }
}