/* form stuff */
form {
    width: 100%;
}
/* search bar colors */
.search {
    background-color: rgb(218, 216, 216);
    width: 200px;
}

/* search bar font styling */
input, textarea {
    font-weight: lighter;
    font-family: "Arvo", serif;
    font-style: italic;
    font-size: 14px;
    padding: 10px;
    display: inline-block;
    border: 1px solid rgb(0, 0, 0);
    box-sizing: border-box;
    width: 100%;
}

/* search bar size */
.quicksearch {
    border-radius: 5px 0 0 5px;
    display: inline-block;
}

/* removes anoying line from button */
.submit::-moz-focus-inner {
    border: 0;
}

/* magnifying glass postitioning */
.submit{
    position: relative;
    width: 45px;
    font-size: 15px;
    
    left: -5px;
    background-color: rgb(218, 216, 216);
    color: black;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0 5px 5px 0;
    display: inline-block;
    padding: 10px;
}

/* changes the color of the magnifying glass button to a darker one when hovering over it with the mouse */
.submit:hover{
    background-color: rgb(83, 83, 83);
}