@font-face {
    font-family: 'cult-webfont';
    src: url('TA-FabricansCondensed-Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    font-family: 'cult-webfont';
    user-select: none;
}


.social-bar {
    width: 30vw;
    margin: 0 auto;
    margin-top: 5vh;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    list-style: none;
}

.main-logo {
    display: block;
}

.social-bar img {
    width: 3vh;

    transition: transform 300ms ease-in-out;
}

.social-bar img:hover {
    transform: scale(1.3);
}

.intro-text {
    color: #fff;
    font-size: 1.9vh;
    text-align: center;
}

.first-line {
    cursor: pointer;
}

.first-line .most-definitely {
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease-in-out;
}

.first-line:hover .most-definitely {
    max-width: 100%;
}

.game-widget {
    max-width: 646px;
    margin: 2vh auto;
    overflow: hidden;
}
.game-widget iframe {
    width: 646px;
    height: 190px;
    transform-origin: top left;
    transform: scale(min(1.0, calc(98vw / 646px)));
}

@media (orientation: portrait) {
    .main-logo {
        height: 30vh;
        margin: 0 auto;
        margin-top: 3vh;
    }

    .intro-text {
        font-size: 1.9vh;
        width: 75vw;
        margin: 0 auto;
    }
}

@media (orientation: landscape) {
    .main-logo {
        height: 30vh;
        margin: 0 auto;
        margin-top: 3vh;
    }

    .intro-text {
        font-size: 2vh;
        width: 19vw;
        margin: 0 auto;
    }
}