body {
  margin: 0;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
}

.video-bg {
  position: absolute;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: auto;
}

.banner {
  width: 100%;
  height: auto;
}

.avatar {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20px);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 5px solid white;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 450px;
  height: 600px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: Fira Code;
}

.card-content {
  padding: 20px 50px;
  font-size: 10pt;
}

.card-btns {
  display: flex;
  width: 100%;
  gap: 8px;
  justify-content: center;
}

.btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
}

.btn-yt {
  background-color: red;
  color: white;
}

.btn-tw {
  background-color: purple;
  color: white;
}

.btn-ig {
  background-color: magenta;
  color: white;
}

.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 10px;
  border-top: 1px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
