
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
body {

    margin: 0;
    height: 100vh;
    width: 100%;
}
.bg-video{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
   filter: brightness(0.4);
}


.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero_texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
    justify-content: center;
    align-items: center;
    margin: 32px 0 0 10px;

}

.head__txt {
    color:rgb(28, 47, 94);
    font-size: 4rem;
    text-align: center;
    font-family: "Pacifico";
    font-weight: 400;
    text-shadow: 0 0 2px rgb(55, 64, 80);
       filter: brightness(2);


    
}

.name {
    color: hsla(204, 100%, 15%, 0.849);
    font-family: "Lobster Two";
    text-shadow: 0 0 1px rgb(40, 69, 114);
    filter: brightness(2);

}
.head__des {
    text-align: center;
    width: 80%;
    font-family:  "Cinzel" ;
    font-weight: 380;
    color:rgb(45, 84, 121);
    font-size: 20px;
    text-shadow: 0 0 1px rgb(128, 143, 167);

    
}

.head__info {
    display: flex;
    backdrop-filter: blur(4px);
    border: 1px solid rgb(49, 46, 46);
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 16px;
      background: rgba(0, 0, 0, 0.192);


}

.head__tech {
    position: relative;
    overflow: hidden;
    width: 200px;
}

.head__location {
    text-align: center;
       font-family:  "Cinzel" ;
    font-size: 20px;
    font-weight: 500;
    color:rgb(45, 84, 121);
    text-shadow: 0 0 1px rgb(128, 143, 167);
}

.tech__track {
    display: flex;
    width: max-content;
    animation: spin 6s linear infinite;
      box-shadow: inset 15px 0 10px -10px rgba(0, 0, 0, 0.5), inset -15px 0 10px -10px rgba(0, 0, 0, 0.5);
}

.tech__con {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    padding-right: 16px;
}

.tech {
    flex: 0 0 auto;
    font-size: 18px;
    font-family:  "Cinzel" ;
    font-weight: 400;
    color:rgb(45, 84, 121);
    text-shadow: 0 0 1px rgb(128, 143, 167);
}

.head__contact {
    display: flex;
    gap: 20px;
}

.cons {
    display: block;
    filter: grayscale(100%);
    font-size: 24px;
    cursor: pointer;
}
.cons:active {
    scale: 0.9;
}

@keyframes spin {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}