:root{
    --main-1-color: #161C21;
    --main-2-color: #1D252B;
    --main-3-color: #25313b;
    --main-4-color: #3C5061;
    --main-5-color: #0D1114;
    --main-6-color: #c6c4cf;
    --main-7-color: #090c0e;
    --main-8-color: #00F8B9;
    --text-shadow-vw: -.0625rem -.0625rem 0 #6bffff, .0625rem .0625rem 0 #ff829f;
    --text-2-shadow-vw: -.0625rem -.0625rem 0 rgba(107, 255, 255, 0.500), .0625rem .0625rem 0 rgba(255, 129, 158, 0.500);
    --text-hover-color: #4b7eb9;
    --text-hover-2-color: #396392;
    --twitter_blue: #249ef0;
    --twitter_blue_hover: #266dff;
    color: #00000046;
}

html {
    overflow: scroll;
    overflow-x: scroll;
}

body{
    font-family: 'ProximaNova', 'Roboto', 'Arial';
    user-select: none;
}

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

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0; /* Enlève toute marge par défaut */
}

::-webkit-scrollbar{
    display: none;
}

::-webkit-scrollbar-track
{
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 4px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb
{
	/* border-radius: 4px; */
	box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background: linear-gradient(180deg, rgb(155, 51, 59) 0%, rgb(160, 62, 94)25%, rgb(145, 80, 161) 50%, rgb(103, 94, 167) 75%, rgb(64, 126, 180) 100%);
}

::-webkit-scrollbar-thumb:hover
{
	background: linear-gradient(180deg, rgba(244,80,94,1) 0%, rgba(230,90,136,1) 25%, rgba(201,110,223,1) 50%, rgba(147,135,236,1) 75%, rgba(83,164,234,1) 100%);
}

@keyframes shadow_anim {
    0%, 100% {
        box-shadow: inset rgb(0 248 185 / 0%) 0px 0px 20px 0px
    } 50% {
        box-shadow: inset rgb(0 248 185 / 20%) 0px 0px 20px 0px
    }
}

#main-div {
    height: 100%;
    width: 100%;
    background-color: var(--main-7-color);
    color: white;
    display: grid;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 4px 0px #00f8ba00;
    background: url(../img/banner.png) var(--main-7-color);
    background-size: 30%;
    background-position: center 5vh;
    background-repeat: no-repeat;
    box-shadow: inset rgb(0 248 185 / 30%) 0px 0px 20px 0px;
    animation: shadow_anim 5s infinite linear;
}

#main-div > div{
    background-color: var(--main-1-color);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.7em;
    padding: 15px 25px;
    display: grid;
    align-items: center;
    transition-duration: 250ms;
}

#discord-auth{
    grid-template-columns: auto auto;
    gap: 0px 10px;
}

#main-div img{
    height: 35px;
    transition-duration: 250ms;
}

#main-div > div:hover {
    background-color: var(--main-2-color);
    box-shadow: rgb(0 248 185 / 60%) 0px 0px 6px 0px;
    transition-duration: 250ms;
}

#main-div > div:hover img{
    transform: rotate(45deg);
}

#discord-auth-success {
    display: none;
    justify-items: center;
    gap: 10px 0px;
}

#discord-auth-success > div:nth-child(2){
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0px 10px;
}

.auth-success-firs-child {
    display: grid;
    justify-items: center;
}

.auth-success-firs-child > div:nth-child(1) {
    font-weight: 500;
}

.auth-success-firs-child > div:nth-child(2) {
    margin-top: 10px;
    font-size: 0.5em;
}