*{
    background-color: black;
    color: white;
    text-align: center;
}
.div1{
    display: flex;
    justify-content: center;
}
input{
    width: 50%;
    height: 50px;
    background-color: rgba(248, 240, 240, 0.1);
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    border: none;
}

#btn1{
    width: 15%;
    height: 52px;
    background-color: rgba(248, 240, 240, 0.1);
    border: none;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    cursor: pointer;
}

#btn1:hover{
    background-color: rgba(248, 240, 240, 0.5);
}


ul{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 6px;
}

.div2{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;


}

.btn2{
    position: relative;
    bottom: -75px;
    right: 6px;
    background-color: transparent;
    border: none;
    font-size: 15px;
}


.div3{
    background-color: rgb(63, 58, 58);
    height: 200px;
    width: 150px;
    list-style-type: none; 
    border: 2px solid red;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

li{
    width: 100%;
    height: 80%;
    background-color: rgb(63, 58, 58);
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word; 
    overflow: auto;
}

.btn3{
    width: 100%;
    height: 20%;
    background-color: rgb(86, 126, 235);
}


