/* nav bar */

.navbar {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    list-style-type: none;
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.listItem {
    margin: 10px;
    text-decoration: none;
    color: black;
}

/* google */

.logo {
    height: 92px;
}
.center {
    display: flex;
    justify-content: center;
}

/* google search */

.searchBar {
    display: flex;
    z-index: 3;
    height: 44px;
    background: #fff;
    border: 1px solid #dfe1e5;
    box-shadow: none;
    border-radius: 24px;
    margin: 0 auto;
    width: calc(632px + 6px);
    width: 584px;
    max-width: 584px;
    margin-top: 25px;
}
.submitBtn {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: Roboto,arial,sans-serif;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 16px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

/* advanced search */

.advancedSearchHeading {
    font-family: Arial, Helvetica, sans-serif;
    color: #d93025;
    font-size: 20px;
    margin: 25px 35px;
}
.line {
    border-bottom: 0.5px solid grey;
}
.subtitle {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: grey;
    margin: 25px 35px;
}
.row-input {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.left {
    margin: 10px 35px;
    width: 170px;
    font-family: Arial, Helvetica, sans-serif;
}
.inputBar {
    width: 385px;
    padding: 5px;
}
.buttonDiv {
    display: flex;
    justify-content: flex-end;
}
.advancedBtn {
    background-color: #4d90fe;
    border: 1px solid #4d90fe;
    color: #fff;
}