* {
    padding: 0;
    margin: 0;

}



.heder {
    text-align: center;
    background-color: blue;
    height: 35vh;
    color: white;


}

.h1 {
    padding-top: 10%;

}

.content {
    display: flex;
    justify-content: center;

    height: auto;
   
}

.input {
    height: 30px;
    background-color: rgba(0, 255, 85, 0.896);
    
    border: none;
    border-radius: 40px;
    padding: 10px;
    font-size: 25px;
margin-bottom: 30px;

}

.ul {
    font-size: 35px;
    margin-top: 1%;


    justify-content: center;
    text-transform: capitalize;

}
ul li{
list-style: none;

}


.hi {
    margin-right: 20px;
    margin-top: 6%;
}

.btn {
    height: 50px;
    margin-top: 6%;
    background-color: rgb(255, 119, 0);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 10px;
      font-size: 25px;

}


 li .one { 

    margin: 10px;
    background-color: blue;
    color: aliceblue;
    padding: 7px;
    border: none;
    border-radius: 10%;
    font-size: 23px;
    
 }
 .two{ 

    margin: 10px;
    background-color: red;
    color: aliceblue;
    padding: 7px;
    border: none;
    border-radius: 10%;
    font-size: 23px;
    
 }

 @media screen and (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .content {
        flex-direction: column;
    }

    .input {
        margin-right: 0;
        margin-bottom: 20px;
        width: 80%;
        text-align: center;
    }

    .btn {
        margin-top: 0;
        width: 50%;
    }

    .ul {
        font-size: 30px;
        width: 90%;
    }

    li .one,
    li .two {
        font-size: 20px;
        padding: 6px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        height: 25vh;
    }

    .header h1 {
        font-size: 2rem;
    }

    .input {
        font-size: 18px;
        height: 25px;
        padding: 8px;
        width: 90%;
    }

    .btn {
        font-size: 18px;
        height: 45px;
        padding: 8px 15px;
        width: 60%;
    }

    .ul {
        font-size: 22px;
        width: 95%;
    }

    ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    ul li div {
        margin-top: 10px;
    }

    li .one,
    li .two {
        font-size: 16px;
        padding: 5px 10px;
    }
}