:root {
  --primary: rgb(59, 130, 246);
  --bg: #010101;
  --box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.1);
  --border: 0.1rem solid rgba(255, 255, 255, 0.2);
  --white: #fff;
  --bg-card: rgba(255, 255, 255, 0.1);
  --gray: #808080;
  --header-height: 3.5rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  height: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

footer {
  background: var(--bg-card);
  height: auto;
  width: 100vw;
  padding-top: 3rem;
  color: var(--white);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.footer-content h3 {
  font-size: 1.8rem;
  font-weight: var(--font-regular);
  text-transform: capitalize;
  line-height: 3rem;
}

.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}

.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 3rem 0;
}

.socials li {
  margin: 0 10px;
}

.socials a {
  text-decoration: none;
  color: var(--white);
}

.socials a i {
  font-size: 1.8rem;
  transition: color 0.4s ease;
}

.socials a:hover i {
  color: var(--primary);
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.footer-bottom {
  background: #000;
  width: 100vw;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 3rem;
}

.footer-bottom p {
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}

.footer-bottom span {
  text-transform: uppercase;
  opacity: 0.4;
  word-spacing: 2px;
  font-weight: 400;
}

.footer-bottom span a {
  color: var(--primary);
}

@media (max-width: 500px) {
  html {
    font-size: 70%;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}
