*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
body{
    font-family: sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header{
    height: 60px;
}
.navbar{
    height: 100%;
    width: 100%;
    padding: 10px 20px;
}

.navbar ul{
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
}
.navbar ul li{
    margin-left: 14px;
}

.navbar ul li a{
    color: black;
}

.link:hover {
    text-decoration: underline;
}

.circle-shadow{

    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-shadow:hover{
    background-color: rgba(0,0,0,0.1);
    cursor: pointer;
}

.menu-icon,
.user-icon{
    font-size: 18px;
}

.user-icon span{
    color: white;
}

.user-icon{
    background-color: orange;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}

/* content section */
.content-section{
    margin-top: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper{
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.logo-img{
    width: 272px;
    margin-bottom: 20px;
}

.search-bar{
    border: 1px solid lightgrey;
    width: 600px;
    height: 45px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.search-bar:hover{
    box-shadow: 0px 0px 3px 0px;
}

.search-bar i{
    font-size: 18px;
    color: grey;
    margin-right: 15px;
    cursor: pointer;
}

.search-bar input{
    flex-grow: 1;
    height: 30px;
    margin-right: 15px;
    border: none;
    font-size: 16px;
}

.search-bar input:focus{
    outline: none;
}

.search-btns{
    margin-top: 20px;
}

.search-btns button{
    height: 35px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    color: black;
    background-color: #f2f3f4;
}

.search-btns button:hover{
    border: 1px solid lightgray;
    cursor: pointer;
}

.google-search-btn{
    width: 120px;
}

.lucky-search-btn{
    width: 140px;
}

.language{
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.language p a{
    color: blue;
}

.language p a:hover{
    text-decoration: underline;
}

.other-lang{
    padding: 1px;
}

/* Footer */
footer{
    background-color: #F2F2F2;
    height: 100px;
}

.footer-content{
    display: flex;
    align-items: center;
    padding: 20px;
}

.upper-footer{
    height: 50%;
    border-bottom: 1px solid lightgrey;
}

.upper-footer p{
    color: gray;
    font-size: 14px;
}

.lower-footer{
    height: 50%;
    display: flex;
    justify-content: space-between;
}

.lower-footer ul li a{
    font-size: 14px;
    color: gray;
}

.lower-footer ul li a:hover{
    text-decoration: underline;
}

.lower-left-footer{
    display: flex;
}

.lower-left-footer li{
    margin-right: 15px;
}

.lower-right-footer{
    display: flex;
}

.lower-right-footer li{
    margin-left: 15px;
}

/* Mobile and Tablet Responsiveness */

@media only screen and (max-width: 650px) {
    /* Search Bar */
    .search-bar{
        width: 90%;
    }
    footer{
        height: 150px;
    }
    .upper-footer{
        height: 50px;
    }
    .lower-footer{
        height: 100px;
        flex-direction: column;
    }
    .lower-left-footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
}
