*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(about.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.list{
    list-style-type: none;
}
.navbar{
    background-color: #fff;
}
.nav-item{
    padding: 0 40px;
    font-size: 2vw;
    text-decoration: none;
}
.items{
    background-color: #fff;
    border: none;
    font-style: italic;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    font-weight: 400;
}
.items:hover{
    transition: 0.5s ease-in-out;
    letter-spacing: 1.5px;
    color: #ff7300;
}
#search_input{
    margin-top: 3px;
    height: auto;
    width: 300px;
}
#search_input:focus{
    transition: 1s;
    color: white;
    background-color:#fff;
    box-shadow: 0 0 10px #000, 0 0 40px #000 inset;
}
nav .search_user{
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav .search_user input{
    padding: 3px 10px;
    border-radius: 50px;
    border: none;
    outline: none;
    background:rgb(255,255,255,.3);
    color:black;
    margin-right:10px;
    font-size: 20px;
}
nav .search_user .search{
    position:absolute ;
    width:380px ;
    height: 250px;
    top: 70px;
    z-index: 99999;   
    overflow-y:auto;
    overflow-x: hidden;
}
nav .search_user .search::-webkit-scrollbar{
   width: 8px;
   background: rgb(255,255,255,.3);
   border-radius: 5px;
   visibility: visible;
}
nav .search_user .search::-webkit-scrollbar-thumb{
    width: 8px;
    background:rgb(2, 110, 110);
    border-radius: 5px;
    visibility: visible;
}
nav .search_user .search .card{
    position: relative;
    width: 100%;
    height: 50px;
    background: rgb(255,255,255,.5);
    display: none;
    margin-bottom:7px;
    padding: 3px 0px;
    text-decoration: none;
}
nav .search_user .search .card::before{
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background: rgb(255,255,255,0.1);

   border-radius: 5px;
   z-index: -1;
}
nav .search_user .search .card .cont{
    color: black;
}
nav .search_user .search .card .cont{
    font-size: 25px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    width: 550px;
}
.title{
    text-align: center;
    font-size: 5vw;
    font-weight: bold;
    color: #fff;
}
.body{
    margin: 30px;
    width: 96%;
    background-color: #00000069;
    border-radius: 50px;
    transition: 1s;
}
.script{
    padding: 30px;
    color: #fff;
    text-align: center;
    font-size: 2vw;
}
.end{
    font-family:Kaushan Script;
    text-align: center;
    font-size: 3vw;
    color: #fff;
}
.area{
    margin: auto;
    background-color: #fff;
    width: 700px;
    height:5px;
    animation: loop 1s ease-out ;
}
@keyframes loop {
    from{
        width: 0px;
        height:5px;
    }
    to{ width: 700px;
        height:5px;
    }
}