* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

nav {
    background-color: rgb(120, 80, 180);
    padding: 10px 2em;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 2.5em;

    font-weight: bold;
}

.nav-links a {
    color: white;
    font-size: 1em;
    text-decoration: none;
    outline: none;
}

#search-box input {
    width: 500px;
    border: none;
    border-radius: 24px;
    outline: none;
    padding: 14px 20px;

    font-size: 1em;
}

#search-box input::selection {
    background-color: white;
}

section button {
    background-color: white;
    color: black;
    font-size: 1em;
    border: 0 solid white;
    border-radius: 2em;
    padding: 14px 24px;
    cursor: pointer;
}
