* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: black;
  color: white;
  min-height: 100vh;
  line-height: 1.5;
}

/* image section */

.image-gradient {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
}

.layer-blur {
  height: 0;
  width: 30rem;
  position: absolute;
  top: 20%;
  right: 0;
  box-shadow: 0 0 700px 23px rgb(168, 138, 84);
  rotate: -30deg;
  z-index: -1;
}

/* container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Header */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  z-index: 999;
}

header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 300;
}

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: -5%;
}

nav a {
  font-size: 1rem;
  letter-spacing: o.1rem;
  transition: color 0.2 ease;
  text-decoration: none;
  color: inherit;
}

nav a:hover {
  color: #a7a7a7;
}

.btn-signing {
  background: linear-gradient(135deg, #ff9696, #ffd8d8);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 77, 77, 0.3);
  transition: all 0.3s ease;
}

.btn-signing:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 77, 77, 0.4);
}

.btn-signing:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}
/* Main */

main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(90vh - 6rem);
}

.content{
  max-width: 40rem;
  margin-left: 10%;
  z-index: 999;
}

.tag-box {
  position: relative;
  width: 18rem;
  height: 2.5rem;
  border-radius: 50px;
  background: linear-gradient(
    to right,
    #656565,
    #e99b63,
    #7f427f,
    #6600c5,
    #5300a0,
    #757575,
    #656565
  );
  background-size: 200%;
  animation: animationGradient 2.5s linear infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@keyframes animationGradient {
  to {
    background-position: 200%;
  }
}

.tag-box .tag{
  position: absolute;
  inset: 3px 3px 3px 3px;
  background-color: black;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;

}

.tag-box .tag:hover{
  color: #5300a0;
}

.content h1 {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.1;
  margin: 2rem 0;
  line-height: 1.2;
  text-shadow: 0 0 10px reba(128, 128, 128, 0.418);
}

.description{
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  max-width: 35rem;
  color: gray;
}

.buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.btn-get-started{
  background: linear-gradient(135deg, #c3feff, #ffd8d8);
  color: rgb(0, 0, 0);
  text-decoration: none;
  border: 1px solid #2a2a2a;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  /* letter-spacing: o.1em; */
  transition: backgroung-color 0.3s ease;
} 

.btn-get-started:hover{
  background-color: #ffffff;
}

.btn-signing-main {
  text-decoration: none;
  background-color: lightgray;
  color: black;
  padding: 0.6rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: o.1;
  transition: background-color 0.2s ease;
}

.btn-signing-main:hover{
  background-color: gray;
}

.robot-3d {
  position: absolute;
  top: 0;
  right: -20%;
}

/* Other Divice Responcive */

@media (max-width: 1300px){
  header{
    padding: 1rem 0.5rem;
  }

  .content{
    margin-top: 85%;
  }

  .robot-3d{
    scale: o.8;
    top: -20%;
    right: 2%;
  }
}

