:root {
    --blue1: #1d85e0;
    --blue2: #0050ac;
    --blue3: #002b67;
    cursor: grab;
}

@font-face {
    font-family: orangekid;
    src: url(https://files.catbox.moe/m38dby.TTF);
}

@font-face {
    font-family: petiote;
    src: url(https://files.catbox.moe/l007q9.ttf);
}

::selection {
    background: var(--blue3);
    color: #fff;
}

#wrapper {
    animation: fadeEffectIn 1s;
}

@keyframes fadeEffectIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

a {
    color: var(--blue2);
    text-decoration: none;
}

a:hover {
    color: var(--blue1);
}