* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    color: white;
    background-color: transparent;
    background-image: -webkit-radial-gradient(top center, #3a3f4c -50%, #0D151E 65%);
    background-image: -moz-radial-gradient(top center, #3a3f4c -50%, #0D151E 65%);
    background-image: -o-radial-gradient(top center, #3a3f4c -50%, #0D151E 65%);
    background-image: radial-gradient(at top center, #3a3f4c -50%, #0D151E 65%);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        Fira Sans,
        Droid Sans,
        Helvetica Neue,
        sans-serif;
}

main {
    padding: 4em 0 0;
    display: flex;
    /* flex-direction: column; */
    flex-basis: 0%;
    flex-grow: 1;
    flex-shrink: 1;
    flex-direction: column;
    justify-content: center;
}


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

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

.title {
    text-align: center;
    font-size: 2em;
    margin: 0 0 1.6rem;
    line-height: 1.15;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.title {
    background: linear-gradient(to bottom, #FFFFFF 0%, #cbcbcb 30%, #979797 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    line-height: 1.5;
    font-size: 1.2rem;
    text-align: center;
}

.links-container {
    max-width: 640px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.flex-column {
    flex-direction: column;
}

.status {
    background-color: #202327;
    padding: 12px 24px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #BCBCBC10;
    border-radius: 12px;
    /* width: fit-content; */

    /* display: inline-block; */
    /* text-align: center; */
    max-width: 420px;
    margin: 1rem auto 0;
    pointer-events: none;

}

.description-label {
    background-color: #202327;
    padding: 12px 24px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #BCBCBC10;
    border-radius: 12px;
    font-size: 0.8rem;
}

.status-label {
    font-weight: 200;
    font-size: 0.8rem;
    max-width: 420px;
    margin: .5rem auto;
}

.svg-icon {
    fill: #0fc40f;
    filter: drop-shadow(0 0 4px #0fc40f);
    height: 20px;
    margin-right: 0.5rem;
    overflow: visible;
}

.pulsate {
    transform-origin: center;
    animation: 2.4s infinite pulsate-double;
}

h2.title {
    margin: 2rem 0;
}


.card {
    margin: 1.2rem 0;
    flex-basis: 95%;
    padding: 1.5rem;
    text-align: left;
    color: #fafafaa8;
    text-decoration: none;
    border: 1px solid #fafafa83;
    border-radius: 10px;
    transition:
        color 0.35s ease,
        border-color 0.35s ease;
}

.card:hover,
.card:focus,
.card:active {
    color: #fafafa;
    border-color: #fafafa;
}

.card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.card p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
}

.prevent-select {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

footer {
    max-width: 640px;
    border-top: 1px solid #fafafa0e;
    margin-top: 32px;
}

@keyframes pulsate {
    0% {
        transform: scale(0.7);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }

}

@keyframes pulsate-bigger {
    0% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    100% {
        transform: scale(8);
        opacity: 0;
    }

}

@keyframes pulsate-double {
    0% {
        transform: scale(0.7);
        opacity: 0.5;
    }
    48% {
        transform: scale(1.8);
        opacity: 0;
    }
    49% {
        transform: scale(0.7);
        opacity: 0;
    }
    50% {
        transform: scale(0.7);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }

}