html, body, .page {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0;
    background-color: white;
    overflow: hidden;
}

.page {
    display: grid;
    place-items: center;
}

.main-content {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;

    display: block;
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
}

.main-page {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;

    scroll-snap-align: center;

    position: relative;

    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    .page-theme-image {
        min-width: 100%;
        min-height: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .page-theme-card {
        right: 64px;
    }
}

@media only screen and (min-width: 1200px) {
    .page-theme-card {
        left: calc(50% + 256px);
    }
}

.page-theme-card {
    position: absolute;
    background-color: rgb(10, 10, 10);
    color: white;
    box-shadow: 8px 8px 0 rgb(255, 138, 197);
    padding: 16px;
    top: 128px;
    text-align: right;
    overflow: hidden;
}

.page-theme-card > h3 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    word-break: keep-all;
}

.page-theme-card > .page-bg-text {
    text-transform: uppercase;
    color: white;
    font-weight: bolder;
    text-align: right;
    position: absolute;
    right: -4px;
    top: 8px;
    margin: 0;
    font-size: 64px;
    line-height: 48px;
    vertical-align: bottom;
    opacity: 0.08;
    user-select: none;
    text-wrap: stable;
}

.page-theme-card > p {
    font-size: 16px;
    font-weight: normal;
    word-break: keep-all;
    margin: 0;
}
