body, html {
    background: #ddd;
    margin: 0;
    height: 100%
}

* {
    box-sizing: border-box;
}

#main-content {
    position: relative;
    width: 60%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0 auto;
    top: 1em;
}

nav {
    font-family: Helvetica;
}

section {
    margin: 10px;
    padding: 10px 15px;
    border: 1px solid #113;
    border-radius: 5px;
    text-align: left;
    color: #113;
    background: #ddd;
}

header {
    font-family: 'Courier New', Courier, monospace;
    background: #113;
    color: white;
    padding: 0.4em 0 1em 1em;
}

.logo {
    font-size: 3em;
}

.tag {
    font-size: 1em;
    display: block;
    position: relative;
    left: 0.2em;
}

nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav li {
    padding: 0 1em;
    border-right: 1px solid;
    width: 130px;
    text-align: center;
    color: #113;
}

.no-top-margin {
    margin-top: 0;
}

.no-bottom-margin {
    margin-bottom: 0;
}

.bg-image {
    background-image: url("./img/baseball-splash.jpeg");
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

h3 {
    color: #ddd;
}