html,
body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.game-container {
    position: relative;
    width: 600px;
    height: 800px;
    transform-origin: top center;
    top: 0;
    transform: scale(1);
    overflow: hidden;
}

.game-text {
    margin-top: 20px;
    font-size: 1.2em;
    text-align: center;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes scaleSlow {
    50% {
        font-size: 1.3em;
    }
}

/* .firstBlock img {
    display: inline-block;
}

.firstBlock h1 {
    display: inline-block;
    color: yellow;
}

#slow {
    animation: 10s scaleSlow infinite linear;
    position: relative;
    display: inline-block;
    transform-origin: center;
    color: red;
}

#pasture {
    color: green;
}

#grazing {
    color: brown;
}

#construction {
    width: 70%;
    height: auto;
}

.bottomBlock p {
    display: inline;
}*/