@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
@import url("https: //online-fonts.com/fonts/futura-md-bt");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  position: relative;
  /* Required for positioning pseudo-elements */
  overflow: hidden;
}
a{
  text-decoration: none;
  color: white;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1488590528505-98d2b5aba04b?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
  filter: blur(2px);
  z-index: -1;
}

.container {
  padding: 50px;
}

.title {
  position: absolute;
  width: 345px;
  height: 468px;
  left: 62px;
  top: -26px;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  font-size: 390px;
  line-height: 468px;
  letter-spacing: -0.07em;
  z-index: -1;
}

.subtitle_1 {
  position: absolute;
  width: 608px;
  height: 110px;
  left: 414px;
  top: 227px;

  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  font-size: 92px;
  line-height: 110px;
}

.subtitle {
  position: absolute;
  width: 419px;
  height: 110px;
  left: 414px;
  top: 117px;

  font-family: "Futura Md BT";
  font-style: normal;
  font-weight: 400;
  font-size: 92px;
  line-height: 110px;
}

.icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 320px;
  gap: 20px;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: black 0.5;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.icon img {
  width: 75px;
  height: 75px;
  object-fit: cover;
    cursor: pointer;
}

.js-logo {
  position: absolute;
  top: 20px;
  right: 20px;
}

.js-logo img {
  width: 60px;
}

footer {
  background-color: rgb(201, 17, 54);
  color: #f5f5f5;
  padding: 1rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #f5f5f5;
}