html {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    background-color: black;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.viewport {
    position: relative;
    width: 100%;
    min-height: 900px;
}

.site-scaler {
    --site-scale: 1;

    position: absolute;
    top: 0;
    left: 50%;
    width: 760px;
    height: auto;
    margin-left: -380px;
    transform: scale(var(--site-scale));
    transform-origin: top center;
}

.site-table {
    width: 760px;
    border: 0;
    margin: 0;
}

.table-cell {
    position: relative;
}

.background {
    display: block;
    width: 760px;
    height: auto;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-wrap {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.main-logo {
    position: relative;
    z-index: 2;
    display: block;
}

.ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: ghostPulse 1s infinite ease-out;
    will-change: transform, opacity;
}

.ghost-2 {
    animation-delay: 0.5s;
}

@keyframes ghostPulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    10% {
        transform: scale(1.025);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.content-box {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-box iframe {
    display: block;
    margin: 0 0 30px;
    flex: none;
}

.square-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 25px;
    margin-bottom: 30px;

    background-color: #B6023B;
    cursor: pointer;

    font-family: Verdana, 'DejaVu Sans', sans-serif;
    font-size: 10px;
    color: #FAFAFA;
    text-decoration: none;
    font-weight: bold;

    flex: none;
}

.title {
    font-family: Verdana, 'DejaVu Sans', sans-serif;
    font-size: 10px;
    color: #FAFAFA;
    font-weight: bold;
    margin: 0 0 5px;
    width: 100%;
}

.text {
    font-family: Verdana, 'DejaVu Sans', sans-serif;
    font-size: 10px;
    color: #9FB8D8;
    margin: 0 0 20px;
    width: 100%;
}

.links-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
    margin-top: 6px;
    margin-bottom: 28px;
}

.links-box a,
.separator {
    font-family: Verdana, 'DejaVu Sans', sans-serif;
    font-size: 10px;
    color: #9FB8D8;
}

.links-box a.patreon {
    color: #f9d800;
}

.separator {
    margin: 0;
}

.legal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap;
}

.legal {
    font-family: Arial, 'Liberation Sans', sans-serif;
    font-size: 10px;
    color: #9FB8D8;
    text-decoration: none;
}
