@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

:root {
    --bg: #070707;
    --lighter-bg: #151515;
    --accent: #ff0095;
    --altAccent: #00bfff;
    --text: #FFF;
    --gray: #5e5e5e;
    --discord: #5865F2;
}


html {
    font-family: "Fredoka", sans-serif;
    background: var(--bg);
    color: var(--text);
}

html, body {
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.circle-image {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.unselectable-element {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}