body {
    font-family: 'Roboto Mono', monospace;
}

.h-100 {
    height: 100%;
}

div.hero_section {
    min-height: 60vh;
    background-size: cover;
    background-repeat: none;
    background-attachment: none;
}

div.coverText {
    background: #6c6660;
    opacity: 0.8;
}

.section {
    background-size: cover;
    background-repeat: none;
    min-height: 60vh;
}

.buynowbanner {
    height: 75px;
    background: #000000;
    opacity: 0.9;
}

.promoCodeInput {
    text-transform: uppercase;
}

::placeholder {
    text-transform: none;
}

ul#missionInstructions {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

ul#missionInstructions li {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    display: inline-flex;
    padding: 1rem;
    margin: 0.4rem;

}

@keyframes cursor-blink {
    0% {
        opacity: 0;
    }
}

.cursor::after {
    content: "\00a0";
    width: 0.6rem;
    height: 2rem;
    background: #ffffff;
    display: inline;
    vertical-align: middle;
    margin-left: 0.3rem;
    margin-bottom: 0.3rem;
    animation: cursor-blink 1.5s steps(2) infinite;
}