*{

    font-family: 'Poppins', sans-serif;
     box-sizing: border-box;
     margin: 0;
    padding: 0;
    background-color: white;
}
html, body{
   height:100%;
}
main{
  padding-top: 100px;
  
}
/*
.container{
    display: flex;
    height: 100vh;
    overflow: auto;
    align-items: center; 
    justify-content: center;
    -ms-overflow-style: none;   IE and Edge 
    scrollbar-width: none;      Firefox *
     
}
.container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera *
}
*/

.navbar {
  background-color:transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
}
.navbar ul{
    list-style-type:none;
    overflow:hidden;
    top: 0;
    width: 100%;  
}
.navbar li{
float:right;

}
.navbar li.left-float{
    float:left;
}
.navbar  li a{
    color: #b1b1b17a;
    font-size: 20px;
    font-weight:400;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
}
li a:hover {
  color: rgb(96, 96, 96);
}
.greet{
  color:rgb(0, 0, 0);
  text-align: center;
  padding: 0px 00px 0px 00px;
  
}
.greet h1{
  font-size: 4rem;
}
.hero{
padding: 20px 100px 100px 100px;
text-align: center;

}
.typing{
    font-size: 5rem;
    font-weight:bold;
    text-align: center;
    color:#000000;
    
    padding: 64px;
    
}#text {
  display: inline-block;
  transition: transform 0.6s ease;
  position: relative;
  cursor: pointer;
}

.contacts {
  display: flex;
  justify-content: center;     /* center the whole row */
  align-items: center;         /* vertically align items */
  gap: 40px;                   /* space between each line */
  padding: 20px;
}

.line {
  font-size: 1.2rem;
  white-space: nowrap;         /* prevents text from wrapping */
}
.contacts {
  display: flex;
  gap: 40px;
}

.line {
  font-size: 5rem;
  cursor: pointer;
  position: relative;
}

.gradient-text {
  
  font-weight: bold;
  background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #ff6ec4);
  background-size: 800% 800%;
  
  /* Standard and vendor-prefixed background-clip */
  background-clip: text;
  -webkit-background-clip: text;

  /* Standard and vendor-prefixed text-fill for transparency */
  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: gradientShift 10s ease infinite;
}
/*================================================================================
Dropdown
==================================================================================*/
.dropdown {
  position: relative;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 0;
  min-width: 160px;
  /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
  z-index: 99;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown links */
.dropdown-content a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  position: relative;
 
}
.dropdown-content a::before {
  content: '';
  opacity: 0;
  transition: opacity 0.2s ease;
   margin-right: 16px; 
  font-size: 1rem;
}


.dropdown-content a:hover {
 background-color: #f248cd;
 
}
/* Show arrow on hover */
.dropdown-content a:hover::before {
  content: '→'; /* You can use '▶', '➔', or even an SVG icon */
  opacity: 1;
}


@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
footer{
  position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
    text-align: center;
    color:rgba(48, 44, 44, 0.434);
    
}
@media (max-width: 768px) {
  .navbar li a {
    font-size: 16px;
    padding: 10px;
  } 
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;    /* horizontally center items */
    justify-content: center; /* vertically center if there's height */
    padding: 10px 0px;      /* reduce padding for smaller screens */
    text-align: center;
    
  }
  .greet h3{
    font-size: 16px;
  }
  .greet h1{
    font-size: 40px;
  }
  .greet p{
    font-size: 12px;
  }
  .typing {
    padding-top:0px;
    font-size: 1.5rem;
    text-align: center;
  }


  
}



