* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: white;
  scroll-behavior: smooth;
}

.image-container {
  width: 100%;
  height: 100vh;
  background-image: url("img-2.jpg");
  background-position: center;
  background-size: cover;
  position: fixed;
  z-index: -1;
}

.container {
  width: 80%;
  margin-inline: auto;
}

.image {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #070e14;
  opacity: 90%;
  z-index: 1;
}

.content {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content h1 {
  font-size: 3.5rem;
}

.content p:nth-child(2) {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.content p:nth-child(3) {
  font-size: 0.9rem;
}

.content i {
  font-size: 1.5rem;
}

.content .scroll-btn{
  position:absolute;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content: center;
  bottom:4rem;
}

.content .scroll-btn p{
  font-size:1.2rem;
}

.content .scroll-btn i{
  animation: arrow 2s infinite linear;
  color:#d93838;
}

@keyframes arrow {
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(10px);
  }
  100%{
    transform: translateY(0px);
  }
}

/* fade section */
.fade-container  {
  padding: 30px 0;
}

.fade-container h2::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color:rgba(255, 255, 255, 0.699);
  position: absolute;
  left: 0;
  bottom:60px;
}

.fade-container h2 {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.fade-container h2::after {
  content: "";
  width: 100%;
  height: 1px;
  display:block;
  background-color:rgba(255, 255, 255, 0.699);
  position: absolute;
  top:60px;
}

.fade {
  width: 100%;
  height: 50vh;
  display: flex;
  padding: 50px 0;
  margin: 40px 0;
}

.fade .card {
  width: 40%;
  height: 100%;
  border: 2px solid white;
  border-radius: 12px;
  background-color: #090f1d;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.fade .card p {
  font-size: 0.9rem;
  color: rgb(2, 136, 214);
  font-family: monospace;
}

.fade .card span {
  font-family: monospace;
  color: rgb(88, 192, 252);
}

.fade .card .orange {
  color: orange;
}

.fade-second {
  justify-content: end;
}

footer {
  background-color: #070e14;
  padding: 60px 0;
}

footer h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

footer .btn-group {
  display: flex;
  gap: 1rem;
}

footer .btn-group .btn {
  border: 2px solid #d93838;
  color: #d93838;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 0.9rem;
  transition: all 0.28s;
}

footer .btn-group .btn:hover {
  background-color: #d93838;
  color: #070e14;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0c2f4c;
  align-self: flex-end;
}
