* {
    box-sizing: border-box;
}

body {
    background-color: #333333;
    margin: 0 auto;
    color: #efefef;
    font-size: 15px;
    font-family: sans-serif;
}

a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #efefef;
}

.nav {
    background-color: #333333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    border-bottom: 1px solid #434242;
    font-size: 1.7em;
    text-transform: uppercase;
    text-align: center;
}

.nav .nav-brand a {
    color: #deeeee;
}

.container {
    padding: 10px;
    max-width: 560px;
    margin: 70px auto 0;
}

.search-box {
    padding: 15px;
}

.search-container {
    padding: 15px;
}

.search-box label {
    font-size: 1.5em;
    text-align: center;
}
.search-box label, .search-box .input {
    display: block;
}

.button {
    padding: 10px;
    text-transform: uppercase;
    background-color: #434242;
    color: #efefef;
    border: none;
}
.button:hover, .button:focus {
    background-color: #333333;
}

.input, .input:hover, .input:focus {
    display: block;
    width: 100%;
    padding: 8px 2px 8px 2px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #434242;
    outline: none;
    color: #deeeee;
}

.input:hover, .input:focus {
    border-bottom: 1px solid #efefef;
}

.content {
    padding:10px;
}

.content h1 {
    text-transform: uppercase;
    text-align: center;
}

.list-view {
    list-style: none;
    margin-left: -15px;
}

.list-view .list-item {
    padding: 20px;
    border-bottom: 1px solid #434242;
}
.list-view .list-item {
    align-items: center;
    display: flex;
    justify-content: space-between;
}