@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/*#tag:hover{
    animation: tag1 3s ;
}

@keyframes tag1{
    0%{
        color:#3e8e41;
        background-color: black;
        opacity: 0.4;
    }
    25%{
        color: bisque;
        background-color: black;
        opacity: 0.4;
    }
    50%{
        color: aqua;
        background-color: black;
        opacity: 0.4;
    }
    75%{
        color: blue;
        background-color: black;
        opacity: 0.4;
    }
}*/
#Nav{
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    position: sticky ;
}

ul{
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
}

li{
    list-style-type: none;
    padding: 15px;
}

#Nav li:hover{
    border-radius: 8px;
    background-color: black;
    opacity: 0.8;
    color: white;
}

.Key li{
    list-style-type: none;
    padding: 20px;
    font-size: 40px;
    background-color: black;
    opacity: 0.6;
}

.Key{
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 590px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* Add a background color */
    
   /*background-image: url(https://www.remotelands.com/storage/media/6314/conversions/b230707006-banner-size.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;*/
    
}

.Key video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.Key active{
    position: relative;
    opacity: 0;
    transform: translateY(150px);
    transition: all 2s ease-in;
}

.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    border-radius: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown-content a:hover {
    background-color: black;
    color: #f9f9f9;
    border-radius: 10px;
    opacity: 0.7;
}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }

  #sec2{
    color: transparent;
  }

  footer{
    background-color: rgba(106, 98, 98, 0.121);
    color:black;
    opacity: 0.7;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-around;
  }
