*{
    /* padding: 0;
    margin: 0; */
    box-sizing: border-box;
    font-family: Roboto Condensed;
}
.header{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 2px solid #abfd59;  
    position: sticky;
    top: 0;
    background: rgba(157, 239, 51, 0.27);
}
.header .links{
   display: flex;
   align-items: center;
   justify-content: start;
   gap:30px;
}
.header .links a{
    text-decoration: none;
    font-size: 0.9em;
    color:#333;
    position: relative;
}
.header .links a::after{
    content:'';
    position: absolute;
    width: 0%;
    background: linear-gradient(210deg,rgb(47, 233, 0));
    height: 5px;
    left:0;
    bottom: -10px;
    border-radius: 5px;
    transition: all ease-in 0.2s;
}
.header .links a:hover::after{
    width:100%;
}
.container{
    width: 100%;
    background: rgba(157, 239, 51, 0.27);
    padding: 20px 5%;
    display:flex;
    align-items: start;
    justify-content: space-between;
}
ul{
    list-style-image: url('cropimage.png');
}
h1{
    background:linear-gradient(to right,rgb(0, 255, 81),rgb(0, 255, 145),darkgreen);
    text-align: center;
    width: 100%;
    height: 35px;

}
dl{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
}
dl .item{
    width: 100%;
    padding: 15px;
    background: white;
    border-radius: 5px;
    border-left: 7px solid rgba(10, 185, 10, 0.826);
    background:linear-gradient(rgba(7, 148, 68, 0.617),rgba(255, 255, 0, 0.55));
    box-shadow: 5px 5px 10px gray;
}
dl .item:hover{
    transform: translateX(-10px);
}
dl .item dt{
    font-weight: bold;
}
/* .item dt{
    color: rgb(240, 4, 146);
}
.item dd{
    color: blue;
} */