body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
section{
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
section header{
    position: absolute;
    top: 0;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    width: 100%;
    padding: 20px;
}
section header ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
section header ul li{
    list-style: none;
    margin-left: 20px;
}
section header ul li a{
    color: #111;
    text-decoration: none;
    font-size: 13px;
}
section header ul li button{
    background-color: #4584ef;
    border: none;
    outline: none;
    padding: 8px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}

section .main{
    width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section .main .searchBox{
    position: relative;
    width: 100%;
    margin-top: 20px;
}
section .main .searchBox .searchBar{
    width: 100%;
    padding: 13px;
    padding-left: 45px;
    padding-right: 60px;
    border-radius: 30px;
    font-size: 16px;
    border: 1px solid #ccc;
    outline: none;
}
section .main .searchBox .icons{
    position: absolute;
    top: 0px;
    width: 100%;
    display: flex;
    padding: 12px 20px;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
section .main .buttons{
    margin-top: 20px;
}
section .main .buttons button{
    margin: 0 5px;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid transparent;
    outline: none;
}
section .main .buttons button:hover{
    border: 1px solid #ccc;
}
section .main .lang{
    margin-top: 20px;
    color: #555;
}
section .main .lang a{
    text-decoration: none;
}

section .footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
}
section .footer .row{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgb(0,0,0,0.05);
}
section .footer .row ul{
    display: flex;
}
section .footer .row ul li{
    list-style: none;
}
section .footer .row ul li a{
    text-decoration: none;
    font-size: 14px;
    color: #5f5f5f;
    margin-left: 25px;
}


/* Mobile View */

@media (max-width:768px){
    section .main .searchBox .searchBar{
        width: 78%;
    }
    section .main .searchBox .icons{
        width: 84%;
    }
    section .footer .row ul{
        display: block;
    }
}




