* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    background-color: #2BFF88;
    background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header .jumbotron {
    background-color: rgba(255, 255, 255, 0.2);
}

h1 {
    font-family: 'Press Start 2P', serif;
    color: white;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-shadow: .1em .1em #FA8BFF;
}

@media (max-width: 700px) {
    h1 {
        font-size: 1.5em;
    }
}

.card {
    background-color: rgba(255, 255, 255, 0.2);
}

.card-body {
    padding-bottom: 2.25em;
}

.carousel {
    background: none;
}

.carousel-cell {
    width: 66%;
    height: 400px;
    margin-right: 10px;
    background: none;
}

.carousel-cell-image {
    display: block;
    max-height: 100%;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
    opacity: 1;
}
