.navbar{
    display: flex;
    position: sticky;
    justify-content:space-around;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
    top: 0;
    background-color: rgb(150, 144, 40);
    color: rgb(13, 13, 16);
    font-size: x-large;
    
}

.nav-links{
    display: flex;
    gap: 75px;
    list-style: none;
  
   
}
.nav-links a{
    color: rgb(1, 19, 160);
    text-decoration: none;
}
.container{
    padding: 50px 20px;
}
.animated-box-wrapper{
    width:250px ;
    height:250px;
    background-color: rgb(50, 181, 2);
    margin: auto;
  animation: move 6s ease-in-out infinite;
  border-radius: 10px;

}
@keyframes move {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(50px);
    }
   
}


.glowing-card{
    box-shadow: coral;
    width: 280px;
    margin: 20px auto;
    padding: 20px;
    background: rgb(235, 100, 237);
    border-radius: 15px;
    animation: pulseGlow 2s infinite;
    border: 5px solid purple;


}
@keyframes pulseGlow {
   
    20% { box-shadow: 0 0 5px rgba(11, 203, 40, 0.4); }
    50% { box-shadow: 0 0 25px rgba(214, 5, 5, 0.9); }
    100% { box-shadow: 0 0 5px rgba(164, 98, 11, 0.4); }
}
.spinning-icon{
    font-size: 100px;
    display: inline-block;
    margin: 20px;
   display: flex;
   justify-content: center;
   animation: rotatefull 5s linear infinite;

}
@keyframes rotatefull {
    from{transform: rotate(0deg);}
    to{transform: rotate(3600deg);}
}
.bounce-button{
    background-color:yellow;
    color: rgb(12, 8, 3);
    padding: 20px 20px;
    border-radius: 15px;
    animation: bounce 2s infinite;
    font-size: 2rem;

}
@keyframes bounce{
    40%{transform: translatey(-20px);}
    60%{transform: translateY(-10px);}
}