html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'arial';
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .main {
    width: 580px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 60px;
    margin: 0;
    margin-left: 40px;
}

h2 {
    font-size: 20px;
    margin: 0;
}

section .main .searchBx {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

section .main .searchBx .query {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    border-radius: 30px;
    padding-left: 45px;
    padding-right: 0px;
}

section .main .searchBx .icons {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    align-items: center;
    pointer-events: none;
}

section .main .searchBx .icons img {
    max-width: 100%;
}

.searchBtn {
    margin: 0 5px;
    margin-top: 20px;
    margin-left: 40px;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid transparent;
    outline: none;
}

.searchBtn:hover {
    border: 1px solid #ccc;
}

