@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
body {
    --font: "Cera Round", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-family: var(--font);
}

.landing {
    display: flex;
    width: 100dvw;
    min-height: 100dvh;
    flex-direction: column;
}
div.title {
    display: flex;
    font-size: 185px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Lazydog", Arial, Helvetica, sans-serif;
    color:rgb(0,5,0);
    transform-origin: top left;
}
div.title .part {
    opacity: 0;
    margin:0 5px;
    position: relative;
    display: flex;
}
div.title .part .icon-dot {
    position: absolute;
    top:10%;
    left: 15%;
    width: 50px;
    height: 50px;
    background-image: url(/static/media/icon.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
div.title .part.show {
    animation: titleFloatIn 1 300ms;
    opacity: 1;
}
div.title .part.show.float {
    animation: titleFloat infinite 2500ms !important;
}
@keyframes titleFloat {
    from {
        transform: translateY(5px);
    }
    50% {
        transform: translateY(-5px);
    }
    to {
        transform: translateY(5px);
    }
}
@keyframes titleFloatIn {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(5px);
    }
}
button.main {
    background:rgb(66, 137, 72);
    padding: 15px 30px;
    border-radius: 10px;
    color:white;
    border:rgba(0,0,0,0.1) 1px solid;
    outline: transparent;
    width: fit-content;
    font-family: inherit;
    font-weight: 600;
    font-size: 18px;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: 0 5px 0 rgb(42, 94, 47);
    cursor: pointer;
}
button.main:active {
    box-shadow: 0 2px 0 rgb(42, 94, 47);
    transform: translateY(3px);
    filter:brightness(.9);
}
div.button-row {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top:30px;
    margin-bottom:10px;
    user-select: none;
    -webkit-user-select: none;
}
div.button-row span {
    margin-left: 10px;
    cursor: pointer;
    font-size: 17px;
}
div.button-row span:hover {
    color:rgb(50,55,50);
    text-decoration: underline;
}
.info-important {
    width: calc(100dvw - 20px);
    background:black;
    color:white;
    padding: 6px 5px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-family: "League Spartan",Arial, Helvetica, sans-serif;
    font-style: italic;
    overflow: hidden;
    animation:infoImportantAppear 400ms 1;
    border-radius: 8px;
    margin:5px;
    transition: 300ms;
}
.info-important.hidden {
    transform:translateY(-50px);
    opacity: 0;
}
@keyframes infoImportantAppear {
    from {
        transform: translateY(-50px);
    }
    40% {
        transform: translateY(5px);
    }
    to {
        transform: translateY(0px);
    }
}
.info-important span {
    white-space: nowrap;
    animation: marquee 9s linear infinite;
    display: inline-block;
    user-select: none;
    -webkit-user-select:none;
}
.subtitle {
    display: flex;
    color:rgb(55,60,55);
    font-size: 15px;
    width: calc(100dvw - 30px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding:10px;
    background:rgba(70, 155, 78, 0.2);
    border-radius: 10px;
    border:rgba(0,0,0,0.2) 1px solid;
}
.motto {
    font-size: 35px;
    font-weight: 500;
    display: block;
    margin-top:-15px;
    margin-bottom:25px;
    text-align: center;
}
@keyframes marquee {
    from {
        transform: translateX(100dvw);
    }
    to {
        transform: translateX(-50dvw);
    }
}
::selection {
    background:rgba(70, 155, 78, 0.5)
}
.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    width: 100dvw;
}
.popup-window {
    background:rgba(70, 155, 78, 0.2);
    border-radius: 10px;
    border:rgba(0,0,0,0.2) 1px solid;
    width: calc(100dvw - 30px);
    max-width: 450px;
    padding: 10px;
}
.popup h1 {
    margin:0;
    padding: 0;
}
.popup .description {
    color:rgb(55,60,55);
    font-size: 15px;
}
div.captcha {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top:15px;
}
body.captcha-finish div.captcha {
    display: none;
}
div.continue {
    display: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top:10px;
    animation: appear 250ms 1;
}
body.captcha-finish div.continue {
    display: flex;
}
@keyframes appear {from{opacity:0;transform:scale(0.8)}to{opacity: 1;transform:scale(1)}}
button.sub {
    border-radius: 7px;
    padding: 10px;
    background:rgb(66, 137, 72);
    color:white;
    font-family: inherit;
    font-weight: 500;
    border:none;
    font-family: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
button.sub:hover {
    background:rgb(80, 157, 86);
}
button.sub i {
    font-size: 16px;
    margin-right: 2px;
}
.popup svg.big-badge {
    stroke:rgb(100, 105, 100);
    height: 65px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top:15px
}
.popup h1 {
    font-size: 30px;
}
.popup .normal-title {
    margin-bottom:15px;
    font-weight: 600;
    text-align: center;
}
.popup a {
    color:inherit;
    text-decoration: underline;
}