html {
    background-color: orange;
    font-size: 100%;
}

.elevate {
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12);
}

.rounded {
    border-radius: 12px;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card > .title {
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    line-height: 1.10909;
    color: white;
    text-align: center;
    font-size: 1rem;
}

.card > .content {
    margin: auto;
}

@media (orientation: landscape) {
    .sixteen-nine {
        width: 100vh;
        height: calc(0.5625 * 100vh);
    }

    .card {
        width: 100vh;
    }

    .card > .title {
        font-size: 0.5rem;
    }
}

@media (orientation: portrait) {
    .sixteen-nine {
        width: 90vw;
        height: calc(0.5625 * 90vw);
    }

    .card {
        width: 90vw;
    }
}

.card {
    background-color: black;
}

@media only screen and (min-height: 500px) and (min-width: 500px) {
    .card > .title {
        font-size: 1.5rem;
    }
}
