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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

html,
body {
  font-family: 'Manrope', sans-serif;
  overflow: hidden;
  background-color: black;
}

body {
  position: relative;
  height: 100vh;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  background-image: url('./assets/bg.png'); /* Update the path */
  background-size: cover;
}

.overlay:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

header {
  position: absolute;
  top: 82px;
  left: 170px;
}

@media (max-width: 800px) {
  header {
    top: 50px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.logo {
  overflow: hidden;
}

.logo img {
  height: 400px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .logo {
    text-align: center;
  }

  .logo img {
    height: 200px;
  }
}

footer {
  position: absolute;
  bottom: 100px;
  left: 30px;
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: left;
  max-width: 860px;
}

footer ul + ul {
  margin-top: 20px;
}

footer ul li {
  margin: 0 32px;
  position: relative;
}

footer ul li:first-child:before {
  display: none;
}

footer ul li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -32px;
  width: 2px;
  height: 16px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer ul li:nth-child(1) {
  width: 40px;
}
footer ul li:nth-child(2) {
  width: 290px;
}

footer ul li,
footer ul li a {
  font-size: 22px;
  line-height: 22px;
  color: white;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  transform: translateX(5px);
}

footer ul li img {
  width: 20px;
  margin-right: 6px;
}

@media (max-width: 800px) {
  footer {
    bottom: -100px;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }

  footer ul {
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
  }

  footer ul + ul {
    margin-top: 50px;
  }

  footer ul li {
    margin: 10px 0;
    width: auto !important;
  }

  footer ul li,
  footer ul li a {
    font-size: 22px;
  }

  footer ul li:nth-child(2) {
    width: auto;
  }

  footer ul li::before {
    display: none;
  }
}
