@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fredoka', sans-serif;
}

body {
    background: #100f14 !important;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

:root {
    --main-color: #100f14;
}

::selection {
    background: var(--main-color);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: color-mix(in srgb, gray, var(--main-color));
}

::-webkit-scrollbar-thumb {
    background: #111;
}
.red { 
	background:red;
}
.blue { 
	background:blue;
}
.green { 
	background:green;
}
.logo-img {
	height: 90px;
}
.color-yellow { color:#febf1f; }
.bg-yellow { background-color:#febf1f; }

.btn-discord {
	color: #7289DA;
	font-weight: 600;
	padding: 0 10px;
}
.btn-discord i, .btn-logout i {
	font-size: 20px;
	margin-left: 5px;
}
.wrapper {
    position: relative;
    display: flex;
    width: 80%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.text-tb { 
	font-family: "Refault", Georgia;
	font-size: 50px;
	border-bottom: 5px solid #febf1f;
}

.btn-login {
	letter-spacing: 1px;
}
.btn-login i { margin-right: 10px; font-size: 18px; }

.avatar { height: 70px; }

#loading {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    place-items: center;
    z-index: 100;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.3);
    transition: .2s;
    display: none;
}
#loading[data-loading] {
    display: grid;
}

#loading span {
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    border: 5px solid var(--main-color);
    border-top: 5px solid transparent;
    border-radius: 100%;
    animation: rotate 1s infinite ease;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container {
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translate(0, -3%);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}