
body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

header {
    text-align: center;
    margin-top: 15%;
}
span {
    font-size: 80px;
}

.search {
    width: 40%;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.searchTerm {
    width: 100%;
    border: 3px solid;
    padding: 5px;
    height: 40px;
    border-radius: 30px;
    border-color: #f2f5f3;
    outline: none;
    color: black;
}

.searchTerm:focus {
    color: gray;
}

.searchButton {
    width: 300px;
    height: 36px;
    border: 1px solid black;
    background: #e6e9ed;
    text-align: center;
    color: black;
    border-radius: 5px;
    border-color: #f2f5f3;
    cursor: pointer;
    font-size: 20px;
    font-weight: 100;
    margin-top: 25px;
}