@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+NZ+Basic:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&family=SN+Pro:ital,wght@0,200..900;1,200..900&family=Sedgwick+Ave+Display&display=swap');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body{
    background-color: aliceblue;
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3em 0 ;
}
.heading{
    font-family: "Sedgwick Ave Display", cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 3px;
    text-align: center;
}
header p{
    font-size: 20px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 1em 0;
}
.fa-circle-check{
    color: blue;
    margin: 0 0.1em;
}
/* ---------------------------------------------------- */

.one{
    display: flex;
    justify-content: center;
    align-items: center;
}
.input{
    width: 60vw;
    text-align: center;
    padding: 0.5em 0;
}
.txt {
    border: 2px solid rgba(128, 128, 128, 0.39);
    padding: 1rem;
    width: 70%;
    border-radius: 10px;
    background: transparent;
    font-size: 1rem;
}

.txt:focus {
    border-color: #155DFB;
    outline: none;
}
.btn{
    padding: 1em 0.8em;
    margin: 0 0.3em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    background-color: #155DFB;
    color: #fff;
    border: none;
    border-radius: 12px;
}
.btn:hover{
    background-color: #053eb8;
}
/* -------------------------------------------------------------------- */
.two{
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 0;
}
.search {
    width: 49%;
    padding: 1rem;
    border: 2px solid rgba(128, 128, 128, 0.39);
    background-color: transparent;
    border-radius: 10px;
    font-size: 1rem;
}

.search:focus {
    border-color: #155DFB;
    outline: none;
}
.para{
    display: flex;
    justify-content: center;
    margin: 0.5em 0;
    font-size: 30px;
    color: #155DFB;
    font-weight: 500;
    letter-spacing: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
/* ---------------------------------------------------------------- */
.three{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2em 1em;
}
.three ul{
    width: 50%;
}
.three ul li{
    border: 1px solid #155DFB;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 100%;
    border-radius: 15px;
    padding: 0.5em;
    margin: 0.8em 0;
    background-color: #F8F8FF;
}
#para2{
    border: 1px solid rgba(128, 128, 128, 0.39);
    padding: 0.5em 1em;
    margin: 0.8em 0.6em;
    width: 80%;
    margin: 0 0.8em;
    border-radius: 15px;
    font-family: cursive;
}
.icons{
    display: inline;
}
.fa-pen-to-square{
    color: #155DFB;
}
.fa-trash-can{
    color: red;
}
.logo{
    font-size: 17.5px;
    margin-right: 0.4em;
}

ul li:first-child{
    display: none;
}

ul{
    max-height: 70vh;
    overflow-y: auto;
    padding: 0.5em 1em;
}

@media (max-width: 760px) {

    header {
        flex-direction: column;
        margin: 2rem 0;
        text-align: center;
    }

    header p {
        font-size: 0.9rem;
        letter-spacing: 0.05rem;
    }

    .input {
        width: 95%;
    }

    .txt {
        width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
        height: inherit;
    }

    .btn {
        width: 100%;
        margin-top: 0.8rem;
        display: block;
    }

    .search {
        width: 95%;
        font-size: 0.9rem;
    }

    .three {
        margin: 2rem 0.5rem;
    }

    .three ul {
        width: 100%;
    }

    #para2 {
        width: 80%;
        margin: 0.3em 0.5em ;
        font-size: 0.9rem;
    }

    .icons {
        display: flex;
    }
}