:root {
    --bg-color: #FFFFFF;
    --text-color: #272B31;
    --value-color: #E30613;
    --tip-color: #ABABAB;
    --button-background: #FFED00;
    --button-border-color: #FFED00;
    --button-text-color: #1a1a1a;
    --button-background-hover: #F5E000;
    --button-border-color-hover: #F5E000;
    --button-text-color-hover: #1a1a1a;
    --image-top-spacing: 36px;
    --image-bottom-spacing: 43px
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-Medium.woff2) format("woff2");
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-ExtraBold.woff2) format("woff2");
    font-weight: 800;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-ExtraBoldItalic.woff2) format("woff2");
    font-weight: 800;
    font-display: swap;
    font-style: italic
}

ol,
ul {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ol li,
p,
ul,
ul li {
    margin: 0;
    padding: 0
}

*,
:focus,
:hover,
:visited {
    text-decoration: none;
    outline: 0
}

* {
    box-sizing: border-box;
    outline: 0;
    -webkit-tap-highlight-color: transparent
}

:after,
:before {
    box-sizing: border-box
}

img,
picture,
video {
    max-width: 100%;
    display: block
}

svg {
    display: block;
    transition: .2s ease-in-out
}

a {
    color: inherit;
    cursor: pointer;
    transition: .2s ease-in-out
}

main {
    max-width: 2560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

body {
    background: var(--bg-color, #fff);
    color: var(--text-color, #000);
    padding: 0;
    margin: 0;
    font-family: Inter, "Open Sans", sans-serif, Arial;
    font-weight: 500;
    width: 100%;
    position: relative;
    min-height: 100vh;
    min-width: 320px
}

.main-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.wrapper {
    max-width: 380px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    flex: 0 0 auto
}

@media (max-width:359px) {
    .wrapper {
        padding-left: 10px;
        padding-right: 10px
    }
}

.content {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 56px
}

.heading-lucky {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 1.1em;
    letter-spacing: 0.02em;
    color: #E30613
}

.heading-h1 {
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.35
}

.heading-h1 strong {
    color: var(--value-color, #000)
}

.image {
    display: flex;
    justify-content: center;
    margin-bottom: var(--image-bottom-spacing, 30px);
    margin-top: var(--image-top-spacing, 20px)
}

.image img {
    max-width: 100%;
    height: auto;
}

.heading-follow {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: .9375em
}

.heading-follow strong {
    font-weight: 800
}

.button {
    font-family: Inter, "Open Sans", sans-serif, Arial;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    min-height: 50px;
    transition: .2s ease-in-out;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    padding: 12px 20px;
    border: 2px solid var(--button-border-color, #000);
    min-width: 100%;
    border-radius: 10px;
    box-shadow: none !important;
    cursor: pointer;
    background-color: var(--button-background, #fff);
    color: var(--button-text-color, #000)
}

.button:hover {
    background-color: var(--button-background-hover, #000);
    border-color: var(--button-border-color-hover, #000);
    color: var(--button-text-color-hover, #fff)
}

.tip {
    font-size: 10px;
    margin-top: 3em;
    color: var(--tip-color, #000)
}