@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    background-image: url('/assets/bg.png');
    background-attachment: fixed;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
}

.header h1 {
    text-align: center;
}

.header a {
    text-decoration: none;
    color: #000;
}

.header a:hover {
    text-decoration: underline;
}

.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;
}
