
body {
    margin: 0;
    padding: 0;
    color: rgb(200, 200, 200);
    background-color: rgb(26, 26, 26);
    font-family: Montserrat, sans-serif;
}

hr {
    border-top: 1px solid rgb(142, 142, 142);
    border-bottom: none;
}

.searchBar {
    width: 100%;
    height: 50px;

    background-color: rgb(230, 230, 230);
    border-radius: 100px;
    
    display: flex;
    align-items: center;
}

.searchBar input {
    flex-grow: 1;
    height: 100%;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    box-sizing: border-box;
    border: none;
    border-radius: 100px 0 0 100px;

    --webkit--appearance: none;
    appearance: none;
    background-color: transparent;
    font-size: 1.5rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset, 0px 0px 0px 2px rgba(255, 255, 255, 0.8) inset;
}

.searchBar button {
    height: 100%;
    width: 60px;
    border: none;
    border-radius: 0 100px 100px 0;

    --webkit--appearance: none;
    appearance: none;
    background: linear-gradient(to top, rgb(170, 170, 170), rgb(208, 208, 208));
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset, 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset;
    font-size: 1.5rem;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.searchBar button:hover {
    background: linear-gradient(to top, rgb(150, 150, 150), rgb(190, 190, 190));
}
