:root {}

html,
body {
    height: 100%;
}

html {}

@font-face {
    font-family: 'Roboto';
    src: url('./RobotoMono-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #111418;
    font-family: Roboto;
    margin: 0;
}

.header {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 16px 0;
    max-height: 50px;
}

.main {
    padding: 0 32px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.block {
    width: 100%;
}

.block+.block {
    margin-top: 1rem;
}
.block:last-of-type {
    margin-bottom: 1rem;
}
.logo {
    width: 105px;
    height: 48px;
    padding-bottom: 24px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: white;
    max-width: 385px;
    margin: 0 auto;
}

.elipse-one,
.elipse-two {
    border-radius: 50%;
    opacity: 0.5;
    height: 50vw;
    width: 50vw;
    position: absolute;
    filter: blur(130px);
    mix-blend-mode: difference;
    z-index: -1;
}

.elipse-one {
    background: #73d3e0;
    right: -10vw;
    top: 10vh;
}

.elipse-two {
    background: #5b68df;
    left: -10vw;
    top: 50vh;
}

.noise {
    position: absolute;
    width: 375px;
    height: 1046px;
    top: -0px;
    opacity: 0.25;
    z-index: -1;
}

.title {
    opacity: 0.7;
    margin-bottom: 8px;
}

.green {
    color: #00FFF0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.link-btn {
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #00FFF0;
    background-color: #00FFF010;
    display: inline-block;
}

.pool_2,
.pool_3 {
    margin-top: 0.5rem;
}

.pool_3 div {
    display: inline;
}

@media screen and (min-width: 900px) {
    html {
        font-size: 16px;
        /* line-height: 48px; */
    }

    .header {
        padding: 16px 0;
    }

    .main {
        padding: 0 32px 32px;
    }

    .logo {
        width: 116px;
        height: 60px;
        padding-top: 24px;
    }

    .block+.block {
        margin-top: 24px;
    }

    .elipse-one,
    .elipse-two {
        width: 40vw;
        height: 40vw;
        filter: blur(200px);
    }

    .elipse-one {
        top: 15vh;
        right: 20vw;
    }

    .elipse-two {
        top: 65vh;
        left: 15vw;
    }

    .pool_3 div {
        opacity: 0.7;
    }
}