@font-face {
    font-family: 'SamsungOne 700';
    src: url('fonts/SamsungOne-700.woff2') format('woff2'),
        url('fonts/SamsungOne-700.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SamsungOne 400';
    src: url('fonts/SamsungOne-400.woff2') format('woff2'),
        url('fonts/SamsungOne-400.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Samsung Sharp Sans';
    src: url('fonts/SamsungSharpSans-Bold.woff2') format('woff2'),
        url('fonts/SamsungSharpSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FC BARCELONA CONDENSED PRO';
    src: url('fonts/FCBARCELONACONDENSEDPRO-Regular.woff2') format('woff2'),
        url('fonts/FCBARCELONACONDENSEDPRO-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FC BARCELONA CONDENSED PRO';
    src: url('fonts/FCBARCELONACONDENSEDPRO-Bold.woff2') format('woff2'),
        url('fonts/FCBARCELONACONDENSEDPRO-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hellix';
    src: url('fonts/Hellix-Bold.woff2') format('woff2'),
        url('fonts/Hellix-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hellix';
    src: url('fonts/Hellix-Regular.woff2') format('woff2'),
        url('fonts/Hellix-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hellix';
    src: url('fonts/Hellix-Light.woff2') format('woff2'),
        url('fonts/Hellix-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff2') format('woff2'),
        url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Black.woff2') format('woff2'),
        url('fonts/Gilroy-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.woff2') format('woff2'),
        url('fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    font-family: 'FC BARCELONA CONDENSED PRO', serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
body {
    background: #04292d;
	color: #e2e55a;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    width: 100%;
    height: 100%;
}
.container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.container .content {
    position: relative;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
	padding: 0 25px;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container .content svg {
    margin: 0 0 64px 0;
    display: inline-block;
}
@media (max-width: 768px) {
    .container .content svg {
        width: 180px;
        height: 64px;
        flex-shrink: 0;
        aspect-ratio: 45/16;
    }
}
.container .content h1 {
    text-align: center;
    font-size: 46px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
}
@media (max-width: 768px) {
    .container .content h1 {
        font-size: 28px;
        line-height: 48px;
        letter-spacing: -0.14px;
    }
}
.container .content p {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
	text-wrap-style: balance;
    line-height: 30px;
    margin: 22px 0 0 0;
}
@media (max-width: 768px) {
    .container .content p {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
}

a {
    color: #e2e55a;
    text-decoration: none;
}