* {
    margin: 0;
    padding: 0;

}

body {
    font-family: "Poppins", sans-serif;
    

}

a {
    text-decoration: none;

}
.container{
    line-height: 30px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5%;
    background-color: rgb(216, 205, 42);
    margin-top: 0;
    position: sticky;
    top: 0;
    z-index: 11;
}

.logo {
    font-size: larger;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: bold;
    color: rgb(6, 43, 51);
    margin-top: 0;
    position: sticky;
}


.nav-links {
    list-style: none;
    color: azure;
}

.nav-links li {
    display: inline-block;
    padding: 5px 10px;
    color: rgb(205, 19, 53);
}

.div {
    text-indent: 20px;
    padding: 20px;
}

.box {
    width: 200px;
    height: 200px;
    background-color: red; 
    animation: move 6s ease-in-out infinite;
    margin: auto;
    margin-top: 30px;
    z-index: 10;
  
}
@keyframes move{
    0%{
        transform: translatey(0);
    }
    50%{
        transform: translateY(50px);
    }
    100%{
        transform: translateY(0);
    }
}


.box:hover{
    background-color: blue;
}
.div1{
    margin-top: 50px;
   padding-left: 30px;
}
.box2{
    margin-top: 50px;
   padding-left: 30px;
   
}
.box23{
    animation: box23 0.1s infinite;
   box-shadow: darkgoldenrod;
   width: 280px;
   margin: 20px;
   box-shadow: 55px rgb(31, 162, 162) rgb(141, 26, 26);
   
}
@keyframes box23{
    20% { box-shadow: 0 0 55px rgba(11, 203, 40, 0.4); }
    50% { box-shadow: 0 0 25px rgba(186, 12, 12, 0.9); }
    100% { box-shadow: 0 0 55px rgba(48, 230, 7, 0.4); }
}
.box23{
    width: 400px;
    height: 100px;
    background-color: blue;
    margin: auto;
    border-radius: 20px;
    font-size: larger;
    color: white;
    font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
 backdrop-filter: blur(50px);
 margin-bottom: 30px;
 animation: box23 6s ease-in-out infinite;
   
}


.box3{
    margin-top: 50px;
   padding-left: 30px;
}
.spin-icon{
    height: 50px;
    width: 50px;
   /* display: flex;
   display: inline-block;
   justify-content: center; */
   margin-left: 50%;
   animation: spin-icon 1s ease-in-out infinite;
   padding: 50px;
}
@keyframes spin-icon{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
    
}

.box4{
    margin-top: 50px;
   padding-left: 30px;
}
.box44{
    height: 40px;
    width: 90px;
    background-color: brown;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    animation: movee 3s ease-in-out infinite;
    margin-top: 15px;
    margin-bottom: 15px;
}
@keyframes movee{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY();
    }
    }


.box5{
    margin-top: 50px;
   padding-left: 30px;
}
.box55{
    margin-top: 50px;
}
