body {
    background: rgb(195,34,162);
    background: linear-gradient(0deg, rgba(195,34,162,1) 0%, rgba(45,127,253,1) 100%);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

#root {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

.app {
    text-align: center;
    width: 100% !important;
}

.app .container {
    width: 100% !important;
}

.app-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(2,3,2,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 80%, rgba(2,3,2,0) 100%);
}

a.header-link:link { color: rgb(32, 32, 32); text-transform: uppercase; }
a.header-link:active { color: rgb(32, 32, 32); text-transform: uppercase; }
a.header-link:visited { color: rgb(32, 32, 32); text-transform: uppercase; }
a.header-link:hover {
    color: #61dafb;
    text-decoration: none;
}

.app-header .zendo-logo, .app-header .zendo-logo img {
    width: auto;
    height: 100px;
    text-align: center;
}

.app-header .zendo-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.app-header .locations-link {
    text-align: center;
}

.app-header .scores-link {
    text-align: center;
}

.app-header .about-link {
    text-align: center;
}

#about, #locations, #scores {
    color: antiquewhite;
    text-align: center;
}

.score-tables {
    position: relative;
}

.app-header-title {
    flex-direction: column;
}

.app-body {
}

.app-body .game-logo {
    flex-direction: column;
    background-image: url('../images/block-it-blast-title.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* (img-height / img-width) * container-width */
}

.app-link {
    color: #61dafb;
}

.app-error {
    position: absolute;
    top: 2vh;
    right: auto;
    min-width: 30vh;
    visibility: hidden;
}

.cabinet-list {
    background-color: transparent !important;
    padding-top: 0;
    text-align: center;
}

.cabinet-cards {
    width: 30rem;
    margin: 1rem;
    background-color: rgb(20, 30, 20);
    color: ghostwhite;
}


.cabinet-list h1 {
    color: silver;
}

.cabinet-list .card-header {
    background-color: rgb(2,3,2);
}

.cabinet-list .list-group-flush {
    padding: 0px;
}

.cabinet-list .list-group-item {
    color: ghostwhite;
    background-color: rgb(20, 30, 20);
}

.about-cards {
    margin-top: 10px;
    color: ghostwhite;
    background-color: rgb(20, 30, 20) !important;
}
.border-gradient {
    border: 10px solid !important;
    border-image-slice: 1 !important;
    border-width: 5px !important;
}
.border-gradient-purple {
    border-image-source: linear-gradient(to left, #743ad5, #d53a9d) !important;
}

.border-gradient-purple-reverse {
    border-image-source: linear-gradient(to right, #743ad5, #d53a9d) !important;
}
.About-cards .card-title {
    padding: 20px;
    font-size: 35px;
}

.About-cards .card-text {
    font-size: 20px;
}

.scores-list, .score {
    background-color: transparent !important;
    padding-top: 0;
    color: antiquewhite;
}

.scores-list {
    width: 80%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.scores-list h1 {
    color: antiquewhite;
}

.score-column {
    min-width: 96px;
    word-break: break-all;
}

.about-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    color: silver;
}

.asteroids {
    width: 75px;
}

@media screen and (max-width: 700px) {
    .about-list {
        width: 98%;
    }
    .asteroids {
        width: 50px;
    }
    .scores-list {
        width: 98%;
    }
}
.about-list .list-group-item,.about-list .list-group-item .card {
    border: none;
    background-color: transparent;
}

@keyframes app-logo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating {
    position: absolute;
    animation-name: floating;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    overflow: hidden;
}

@keyframes floating {
    0% { transform: translate(0px,  0px) scale(1) rotate(0deg); }
    25% { transform: translate(2px, 5px) scale(1.05) rotate(40deg); }
    50%  { transform: translate(-2px, 0px) scale(0.9) rotate(0deg); }
    75% { transform: translate(2px, -5px) scale(0.8) rotate(-40deg); }
    100%   { transform: translate(0px, 0px) scale(1) rotate(0deg); }
}

#asteroids {
    position: absolute;
    padding: 0;
    margin: 0;
    top:0;
    left:0;
    width: 100%;
    overflow-y: hidden;
    z-index: -2
}

#redship {
    position: fixed;
    top: 50%;
    left: 0%;
    animation: shipScroll1 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#blueship {
    position: fixed;
    top: 50%;
    right: 0%;
    animation: shipScroll2 13s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes shipScroll1 {
    0% {
        transform: translateY(0px) rotatez(0deg);
    }
    25% {
        transform: translateY(-140px) rotatez(360deg);
    }
    50% {
        transform: translateY(180px);
    }
    75% {
        transform: translateY(240px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes shipScroll2 {
    0% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-180px) rotatez(360deg);
    }
    50% {
        transform: translateY(60px);
    }
    75% {
        transform: translateY(240px);
    }
    100% {
        transform: translateY(0px);
    }
}
