.btn-next-next,
.btn-fullscreen {
    opacity: .05;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 64px;
    height: 64px;
    transition: .5s ease;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 19;
    padding: 5px;
}

.btn-next-next svg,
.btn-fullscreen svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    fill: white;
}

.btn-next-next svg *,
.btn-fullscreen svg * {
    fill: var(--color-primary);
}

:root {
    --scene-init-min-container: 100%;
    --scene-init-max-container: 100%;
}

h2 {
    color: var(--text);
    font-size: 56px;
    margin-top: 60px;
    margin-bottom: 120px;
}

h3{
    color: var(--text);
    font-size: 36px;
    margin-top: 20px;
    text-align: center;
}

.btn-run-game {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1em;
    font-weight: bold;
    color: #fff;
    border: 0;
    padding: 30px 50px;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-run-game:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-run-game:focus {
    box-shadow: unset !important;
}

.header {
    width: var(--scene-init-max-container);
    max-width: var(--scene-init-max-container);
    min-width: var(--scene-init-min-container);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1.note {
    text-align: center;
}

.body {
    width: var(--scene-init-max-container);
    min-width: var(--scene-init-max-container);
    max-width: var(--scene-init-min-container);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-title {
    text-align: center;
    font-size: 90px;
    margin-top: 60px;
    margin-bottom: 120px;
    color: white;
}

.brand {
    width: 400px;
    position: relative;
}

.brand>.brand-inner {
    width: 100%;
}

.brand>.brand-inner>img {
    min-width: 100%;
    height: auto;
}

.btn-primary {}