body, html {
    height: 100%;
}

h3 {
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 5px;
}
hr {
    border-top: 1px solid darkslategray !important;
}

.apLink {
    background: none;
    border: thin solid #fff;
    color: #fff;
    margin: 5px;
    width: 220px;
}

.apLink:hover {
    background-color: #fff;
    color: #333;
}

.imageContainer{
    background: no-repeat center center;
    height: 100%;
    margin: auto;
}

.element {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

.wording {
    width: 100%;
    height: 150px;
}

.align-center {
    text-align: center;
}

.parallax {
    /* The image used */
    background-image: url(/images/clouds.jpg);
    /* Full height */
    height: auto;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer {
    background-color: #2d2d30;
    color: #f5f5f5;
    padding: 32px;
}
footer a {
    color: #f5f5f5;
}
footer a:hover {
    color: #777;
    text-decoration: none;
}

/* Turn off parallax scrolling for tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}