@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

* {
    font-family: 'Work Sans', sans-serif;
}

body {
    margin: 0;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: solid 2px;
    padding-bottom: 10px;
}

.header h1 {
    text-align: center;
}

.header a {
    text-decoration: none;
    color: #000;
    border: solid 2px;
    padding: 5px;
    box-shadow: 12px 8px red, 
    12px 8px 0px 2px black
}

ul {
    padding: 0;
    margin: 0;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
    margin-bottom: 5px
}

.searchTerm {
    font-family: 'Work Sans', sans-serif;
    width: 100%;
    border: 3px solid #000;
    border-right: none;
    padding: 5px;
    height: 20px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #000;
}

.searchTerm:focus{
    color: #000;
}

.searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid #000;
    background: #000;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}
