@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  background-color: #121212;
  color: #A5A8AB;
  margin: 0;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.top-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.top-logo img {
  width: 56px;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 100px;
  line-height: 101%;
  letter-spacing: 0px;
}

p {
  font-size:18px;
  color: #bbb;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top:35px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./images/background.jpg');
  background-size: cover;
  background-position: 26px 39px;
  /* opacity: 0.1; */
  z-index: -1;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #5c6266;
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.social-icon path {
  fill: #c7fe02;
}



/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;

  }

  .top-logo img {
    width: 56px;
  }

  .social-icons a img {
    width: 24px;
    height: 24px;
  }
}
