body {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: auto;
  padding: 0 1em;
  height: 100vh;
  color: white;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.frist-logo {
  width: 100%;
  height: 100px;
  margin-top: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/logoUndergroundOfStreet.jpeg");
}

.title-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title, .subtitle {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  text-align: center;
}

.title {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
}

.social-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.bkp-icon {
  display: flex;
  justify-content: center;
  aling-items: center;
  background: white;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
}

.social-link {
  align-self: center;
  color: black;
  text-decoration: none;
  font-size: 1.5rem;
}

.actions-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

