@font-face{
    font-family: Halvar Breitschrift;
    src: url('HalvarBreit-Lt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: Halvar Breitschrift;
    src: url('HalvarBreit-Bd.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face{
    font-family: Inter;
    src: url('inter-cyrillic-700-normal.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

html {
    overflow: hidden;
}

* {
    margin: 0;
}

.body {
    display: flex;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background: 
    radial-gradient(46.74% 102.78% at 91.54% 89.86%, #131B5A 0%, #14151B 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(29.65% 65.86% at 0% -3.54%, rgba(19, 90, 31, 0.3) 0%, rgba(20, 21, 27, 0.3) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.eclipse-1 {
    position: fixed;
    width: 483px;
    height: 460px;
    top: 50%;
    left: 50%;
    margin-top: 100px;
    margin-left: 250px;
    transform: translate(-50%, -50%);
}

.eclipse-2 {
    position: fixed;
    width: 1533px;
    height: 862px;
    border-radius: 8px;
    opacity: 0.5;
    border-width: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spider {
    opacity: 0.2;
    box-sizing: border-box;
    position: fixed;
    bottom: 50px;
    right: 50px;
}

.title {
    max-width: 1402px;
    height: 360px;

    font-family: 'Halvar Breitschrift';
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 90%;
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: uppercase;

    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 100000;

    margin: auto;
}

@media (max-width: 1400px) {
    .title {
        max-width: 1002px;
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 30px;
    }
}

.logo {
    align-items: center;
    position: fixed;
    top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 70px 1fr;
    grid-gap: 10px;
    grid-template-areas: '. img text .';
    z-index: 50000;
}

.logo >img {
    grid-area: img;
}
.logo >h2 {
    align-items: center;
    display: flex;
    grid-area: text;
    width: 65px;
    height: 48px;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.download {
    display: flex;
    width: 100%;
    z-index: 9999999999;
    bottom: 150px;
    left: 0;
    position: fixed;
}

.download > a {
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

.download button {
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding: 12px 24px 14px;
    gap: 8px;
    width: 297px;
    height: 58px;
    background: linear-gradient(98.77deg, #1BC373 40.1%, #118CD0 107.62%);
    box-shadow: 4.75054px 8px 24px -6.86188px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    /* Secondary text */


    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    /* identical to box height, or 133% */
    text-align: center;

    color: #FFFFFF;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.download button:hover {
    background: #118CD0;
}