body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 98vw;
    height: 97vh;
}
.home{
    display: grid;
    width: 80vw;
    height: 100%;
    /* border: 1px solid black; */
    grid-template-rows: 2fr 2fr 4fr;
    padding: 5px;
    gap: 2px;

}
.box{
    /* border: 1px solid; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
}
.head{
    width: 80%;
    height: 60%;
    /* border: 1px solid gray; */
    border-radius: 10px;
    text-shadow: 0 0 10px gray;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 80px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}
.box1{
    width: 100%;
    /* border: 1px solid black; */
    display: grid;
    justify-content: center;
    align-items: center;
    
}
.box1 .search{
    width: 450px;
    height: 35px;
    border-radius: 50px;
    /* border: 1px solid gray; */
    border: none;
    outline: none;
    box-shadow: 0 0 10px gray;
    padding: 2px 20px;
    font-size: 16px;
   
}
.icon{
    position: relative;
    
}
.sa{
    position: absolute;
    background-color: red;
    /* border-top-right-radius: 50px;
    border-bottom-right-radius: 50px; */
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:25px;
    width: 70px;
    height: 39px;
    right: 0;
    top: 0;
    box-shadow: 0 0 10px gray;
    
}

.box2{
    /* border: 1px solid black; */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 20px;
    flex-wrap: wrap;
    
}
.add{
    width: 70px;
    height: 70px;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    outline: none;
    border: none;


}
.add button{
    width: 70%;
    height: 70%;
    border-radius: 100%;
    outline: none;
    border: none;
    /* border: 1px solid gray; */
    font-size: 40px;
    background-color: aquamarine;
    box-shadow: 0 0 10px gray;
    transition: all 0.1s linear;
    
    
}
.box2 .in1{
    width: 70px;
    height: 70px;
    border: 1px solid gray;
    border-radius: 10px;
    /* box-shadow: 0 0 10px gray; */
    transition: all 0.1s linear;
}




.in1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px;
}
.imge{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: blue;
}
.in1:hover{
    box-shadow: 0 0 10px gray;
    
}
.additem{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}




button:hover{
    box-shadow: 0 0 10px green;
    scale: 1.09;

}
.search:hover{
    box-shadow: 0 0 10px lightblue;
    
}
.sa:hover{
    box-shadow: 0 0 10px lightcoral;
    scale: 1.05;
}
.fa fa-search:focus{
    box-shadow: 0 0 10px blue;
    background-color: lightblue;
    scale: 1.05;
}

.bler{
    width: 98%;
    height: 98%;
    position: absolute;
    background-color: black;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.urlbox{
    width: 60%;
    height: 30%;
    border: 1px solid gray;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    background-color: white;
}
.name1, .url{
    height: 35px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-color:gray;
    outline: none;
    padding: 0px 10px;
    font-size: 15px;

}
.close{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-end;
}
.close button{
    padding: 5px 10px;
    border-radius: 5px;
}
.hidden{
    visibility: hidden;
}
.show{
    visibility: visible;
}