﻿* {
    padding: 0;
    margin: 0;
}

body {
    background: radial-gradient(circle, rgb(22 21 77) 0%, rgb(15, 18, 44) 30%, rgb(0, 0, 0) 100%);
    height: 100vh;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
}

.particles {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

    .particles span {
        position: absolute;
        top: 10%;
        left: 10%;
        display: block;
        content: '';
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 0.5rem;
        filter: blur(5px);
    }

        .particles span:nth-child(2) {
            top: 15%;
            left: 70%;
            filter: blur(3px);
        }

        .particles span:nth-child(3) {
            top: 70%;
            left: 40%;
            filter: blur(5px);
        }

        .particles span:nth-child(4) {
            top: 52%;
            left: 20%;
            filter: blur(4px);
        }

        .particles span:nth-child(5) {
            top: 74%;
            left: 90%;
            filter: blur(5px);
        }

        .particles span:nth-child(6) {
            top: 85%;
            left: 10%;
            filter: blur(7px);
        }

        .particles span:nth-child(7) {
            top: 67%;
            left: 79%;
            filter: blur(3px);
        }

        .particles span:nth-child(8) {
            top: 48%;
            left: 40%;
            filter: blur(4px);
        }

        .particles span:nth-child(9) {
            top: 45%;
            left: 30%;
            filter: blur(5px);
        }

        .particles span:nth-child(10) {
            top: 96%;
            left: 29%;
            filter: blur(4px);
        }

        .particles span:nth-child(11) {
            top: 55%;
            left: 89%;
            filter: blur(6px);
        }

        .particles span:nth-child(12) {
            top: 55%;
            left: 60%;
            filter: blur(7px);
        }

main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    main h1 {
        font-weight: normal;
    }

    main h1 {
        text-align: center;
        text-shadow: 0 0 3px #c3d168a2;
    }

    main div {
        margin-top: 2rem;
        text-align: center;
    }

        main div span {
            font-size: 5rem;
            line-height: 6rem;
            text-shadow: 0 0 4px #c3d168a2;
        }

.circle {
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    display: inline-block;
    position: relative;
    width: 6rem;
    height: 6rem;
    text-shadow: none;
    background: #e6f1a3 radial-gradient(#f9ffd2, #ecff70);
    color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    box-shadow: 0 0 3px #e7f1a3a2;
}

    .circle:after {
        display: block;
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        width: 10rem;
        height: 4rem;
        border-radius: 50%;
        border: 2px solid #fafafa;
        border-top: 0px solid #fafafa;
        border-bottom: 4px solid #fafafa;
        z-index: 2
    }

    .circle:before {
        display: block;
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        background: #124;
        border-radius: 50%;
        width: 4px;
        height: 4px;
        transform-origin: 2.5rem 0;
        transform: translate(-2.5rem, 0) rotate(0deg);
        animation: circle-around 5s infinite linear;
    }

@keyframes circle-around {
    0% {
        transform: translate(-2.5rem, 0) rotate(0deg);
    }

    100% {
        transform: translate(-2.5rem, 0) rotate(360deg);
    }
}

main p {
    margin-top: 3rem;
    text-align: center;
    text-shadow: 0 0 3px #c3d168a2;
}

main button {
    padding: 0.55rem 1.2rem;
    border: none;
    outline: none;
    appearance: none;
    border-radius: 1rem;
    background: rgb(17, 141, 44);
    color: #fafafa;
    box-shadow: 0 0 4px #e1f17859;
}

    main button:hover {
        cursor: pointer;
    }

a:link,
a:visited {
    padding: 0.55rem 2.2rem;
    border: none;
    outline: none;
    appearance: none;
    border-radius: 100px;
    background: #000;
    color: #fafafa;
    text-decoration: none;
    font-weight: normal;
    transition: all .3s ease;
}

a:hover,
a:active {
    background: #333;
}

.icon-logo {
    width: 35px;
    height: 35px;
    margin-right: 5px;
}

.logo img {
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #eb222b;
    cursor: pointer;
    padding-top: 15px;
    padding-left: 20px;
}

address {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid #1d242c;
    text-align: center;
}
