:root {
    --dot: 15px;
    --bsw: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, system-ui, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

body {
    /* background: #000; */
    background: #2e2e35;
    color: #fff;
    height: 100vh;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration:none;
}

button {
    padding: 0;
    background: none;
    border: none;
    outline: none;
}

p {
    margin: 0;
}

.red {
    background-color: #ff5f56;
}
.yellow {
    background-color: #ffbd2e;
}
.green {
    background-color: #27c93f;
}
.text-green {
    color:#788617;
}
.text-center {
    text-align: center;
}
.text-normal {
    font-weight: normal;
}

.g-20 {
    gap: 20px;
}

.fem {
    font-family: "Noto Color Emoji";
}
.relative {
    position: relative;
}
.fs-2 {
    font-size: 2rem;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.content {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.grid {
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas: "avatar" "whoami" "sendmail" "wget";
    gap: 10px;
    margin: 10px;
}

.avatar {
    grid-area: avatar;
    justify-content: center;
    display: flex;
    height: fit-content;
}

.badge {
    padding: 2px 10px;
    border-radius: 4px;
    color: white;
    /* background: #3b6796; */
    border-bottom: 2px solid #3b6796;
    box-shadow: var(--bsw);
}
.badge:hover {
    color: #3b6796;
    background: white;
}

.card {
    position: relative;
    border-radius: 10px;
}

.decoration {
    position: absolute;
    display: flex;
    top: 10px;
    left: 10px;
    gap:10px;
}

.dot {
    width: var(--dot);
    height: var(--dot);
    border-radius: 50%;
}

.whoami {
    grid-area: whoami;
}
.sendmail {
    grid-area: sendmail;
}
.wget {
    grid-area: wget;
}
.whoami,
.sendmail,
.wget {
    background: #202027;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--bsw);
}
.whoami p {
    margin: 5px;
    color: white;
}

.photo {
    border: 5px solid white;
    border-radius: 20px;
}
.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1rem;
}

.cursor {
    position: absolute;
    top: -50%;
    left: 100%;
    background-color: #788617;
    width: 5px;
    height: 1.6rem;
    animation: 1s blink ease-in infinite;
}

.nfstat {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: center;
}
.nfstat h1 {
    font-family: montserrat,sans-serif;
    margin: 0;
    font-weight: 900;
    background: url("/static/core/img/noise.gif") no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    background-position: center;
}
.oops {
    font-size: 25vw;
}

.button {
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 4px;
    position: relative;
    background-color: #686262;
    border: none;
    color: #fff;
    padding: 10px;
    text-align: center;
    transition-duration: 0.4s;
    overflow: hidden;
    box-shadow: 0 5px 5px #1930475e;
    border-radius: 4px;
}
.button:hover {
    background: #fff;
    box-shadow: 0px 2px 10px 5px #858181;
    color: #000;
}
.button:after {
    content: "";
    display: block;
    position: absolute;
    padding-top: 200%;
    padding-left: 350%;
    margin-left: -20px !important;
    margin-top: -140%;
    opacity: 0;
    transition: all 0.8s;
}
.button:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

.button:focus {
    outline: 0;
}
.btn-translate {
    background: transparent;
    border: none;
    cursor: pointer;
}

.pulse:hover {
    animation: pulse-animation 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(var(--x, 1.2));
    }
    100% {
        transform: scale(1);
    }
}

.slide-up {
    animation: slide-up var(--slide_time, 1000ms);
}

@keyframes slide-up {
    0% {
        visibility: visible;
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.zoom-in {
    animation: zoom-in var(--slide_time, 1000ms);
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }

}

@media only screen and (min-width: 46.875em) {
    .grid {
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        grid-template-areas: "avatar whoami" "avatar sendmail" "avatar wget";
    }
    .card {
        max-width: 1080px;
    }
}
