body{
    margin: 0 auto;
    width: 90vw;
}

header{
    padding: 10px;
    background-color: bisque;
    border-radius: 10px;
}
.head{
    display: flex;
    justify-content: left;
    align-items: left;
    margin: 2px;
}

.logo img{
    height: 115px;
    width: 100px;
    margin: 10px;
    border-radius: 15px;
}

.title{
    color: red;
    font-size: 20px;
    margin: 25px 20px ;
}

.title1{
    width: 200px;
    color: blue;
    font-size: 25px;
}

.title2{
    color: blue;
    margin: 0 5px 0 15px;
}

.nav ul{
    list-style: none;
    display: flex;
    justify-content: right;
}

.nav li{
    margin: 0 10px;
    height: 30px;
}

.nav input{
    border-style: none;
    border-radius: 10px;
    height: 30px;
    width: 70px;
}

.nav [type="search"]{
    font-size: 15px;
}

.nav a{
    border-radius: 10px;
    padding: 5px;
    background-color: coral;
    text-decoration: none;
    font-size: 25px;
    color: red;
}

.nav a:hover{
    color: chartreuse;
}

.nav ul li .fa-magnifying-glass{
    display: none;
}

.nav button{
    height: 35px;
    width: 120px;
    color: white;
    background-color: red;
    border-style: none;
    border-radius: 10px;
    font-size: 20px;
}

.heading{
    text-align: center;
    font-size: 30px;
    color: blue;
}

.footer{
    height: 40px;
    background-color: bisque;
    margin: 0 0 10px 0;
    border-radius: 10px;
}

.end{
    padding: 10px;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    color: blue;
}

@media screen and (max-width: 600px) {
    .logo img{
        height: 70px;
        width: 70px;
    }

    .title{
        margin: 2px 5px 3px 1px;
        font-size: 18px;
    }

    .title1{
        width: 100px;
        text-align: center;
        font-size: 20px;
    }

    .title2{
        text-align: center;
        font-size: 18px;
    }

    .nav input{
        display: none;
    }
    
    .nav ul li .fa-magnifying-glass{
        display: inline-block;
        font-size: 20px;
        color: red;
    }

    .nav ul li{
        margin: 7px;
    }

    .nav a{
        font-size: 18px;
    }

    .nav button{
        width: 75px;
        font-size: 15px;
    }
    
}