html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: #0a080a;
  background: linear-gradient(180deg, rgba(10, 8, 10, 1) 13%, rgba(14, 4, 15, 1) 90%);
}

body {
  text-align: left;
  font-weight: 500;
  color: #999999;
  margin: 0;
  box-sizing: border-box;

}

.header {
  padding: 40px 40px;
}

.container {

  padding: 40px 0 90px 100px;

}

.header::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  margin: 30px auto;
  background: white;
  border-radius: 10px;
}

.title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  gap: 50px;
  padding-bottom: 40px;
}

.title img {
  padding-top: 30px;
}

h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 2.25rem;
  padding-top: 40px;
  text-align: center;
}

.after-background {
  background: rgba(14, 4, 15, 1);
}

.card {
  padding: 70px;
  border-radius: 10px;
  background: rgba(20, 10, 22, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-body {

}

.card-body h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

.card-body p {
  padding-bottom: 20px;
}

.card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  background: rgba(20, 10, 22, 1);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-button:hover {
  transform: scale(1.1);
}

.after-background h2 {
  padding-bottom: 100px;
}

.after-background h2::before {

  content: "";
  display: block;
  width: 100%;
  height: 6px;
  margin: 100px auto;
  background: white;
  border-radius: 10px;

}

.card-footer img {
  padding-left: 5px;
}

.footer {
  background: rgba(10, 8, 10, 0.9);
  color: #999999;
  text-align: center;
  padding: 20px 20px;
  margin-top: 20px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
}

.social-links {
  padding-top: 40px;
  padding-left: 5px;
  display: flex;
  gap: 40px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-radius: 8px;
  color: #999999;
  font-size: 0.95rem;
  border: 3px solid #999999;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
}

.social-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}
