@font-face {
    font-family: '8bit';
    src: url('./ru8bitoperator-JVE.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: '8bit', monospace !important;
}

body {
    position: relative;
    min-height: 100vh;
    background-color: #000000;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(min(600px * 1.3, 100vw) * 141 / 1080);
    background-color: #00276F;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 32px 16px;
    zoom: 1.3;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("./background.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    image-rendering: pixelated;
}

p {
    margin-bottom: 30px;
    padding: 0 15px;
}

strong {
    font-weight: normal;
    text-shadow: 0.5px 0 0 currentColor;
    letter-spacing: 1px;
}

.big-text {
    font-size: 200%;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #F9FF10;
}

.link-button {
    display: inline-block;
    border: 2px solid #F9FF10;
    padding: 10px 20px;
    color: #F9FF10;
    text-decoration: none;
    cursor: pointer;
}

.link-button:hover {
    background-color: #F9FF10;
    color: #000000;
}

.text-center {
    text-align: center;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    image-rendering: pixelated;
}