html {
    min-height: 100%;
}

body {
    font: 400 15px/1.8 sans-serif;
    margin: 0;
    padding: 0;
}

.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.baseball {
    background-image: url("../images/baseball.jpg");
    height: 1000px;
}

.football {
    background-image: url("../images/football.jpg");
    height: 1000px;
}

.soccer {
    background-image: url("../images/soccer.jpg");
    height: 1000px;
}

.basketball {
    background-image: url("../images/basketball.jpg");
    height: 1000px;
}

h1, h2, h3 {
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
}

.logo {
    position: absolute;
    left: 0;
    top: 15%;
    width: 100%;
    text-align: center;
}

.caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
}

    .caption span.border {
        background-color: #111;
        color: #fff;
        padding: 18px;
        font-size: 25px;
        letter-spacing: 10px;
    }

@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}
