img{
    height: 450px;
    width: 110px;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(40%);
    transition: filter 0.5s,width 0.6s;

    
}
img:hover{
    width: 700px;
    filter: brightness(100%);

}
.box{
    height: 697px;
    display: flex;
    justify-content: center;
    align-items: center;
}
body{
    background-image: url(images/3.jpg);
    background-size: 100%;
}
.header{
    background-color: rgb(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    right: 0;
    left: 0;
    top: 10px;
    height: 50px;    
    margin-left: 14px;
    margin-right: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
p{
    margin: 0;
    font-family: pacifico;
    color: white;
    padding-left: 50px;
    font-size: 25px;
}
.right-sec{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 400px;
}
.right-sec div{
    position: relative;
    color: rgb(201, 201, 201);
    font-family: poppins;
    cursor: pointer;
}
.right-sec div:hover{
    color: rgb(255, 255, 255);
}
.right-sec div::after{
    content: "";
    position: absolute;
    left: 48%;
    bottom: -3px;
    background-color: #9ee0be;
    width: 0;
    height: 4px;
    border-radius: 2px;
    transition: 0.3s ease-out;

}
.right-sec div::before{
    content: "";
    position: absolute;
    right: 48%;
    bottom: -3px;
    background-color: #9ee0be;
    width: 0;
    height: 4px;
    border-radius: 2px;
    transition: 0.3s ease-out;

}
.right-sec div:hover::after{
    width: 52%;

}
.right-sec div:hover::before{
    width: 52%;

}


