* {
    padding: 0;
    margin: 0;
    border: none;
    text-decoration: none;
    list-style: none;
    transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar {
    width: 0.5vmin;
}

::-webkit-scrollbar-button {
    width: 0.5vmin;
    height: 0.5vmin;
    background: #721250;
}

::-webkit-scrollbar-thumb {
    background: #721250;
    border: 0px none #ffffff;
    border-radius: 0px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border: 0px solid #721250;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #721250;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: #ffffff;
    border: 0px solid #721250;
    border-radius: 0px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

::-moz-selection {
    background-color: #721250;
}

::selection {
    background-color: #721250;
    color: white;
}

@font-face {
    font-family: Poppins-Bold;
    src: url("fonts/Poppins-Bold.ttf");
}
@font-face {
    font-family: Poppins-Italic;
    src: url("fonts/Poppins-Italic.ttf");
}
@font-face {
    font-family: Poppins-Regular;
    src: url("fonts/Poppins-Regular.ttf");
}


body {
    font-family: "Poppins-Regular";
    background: black;
    color: white;
    height: 100vh;
    overflow-x: hidden;
}

.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(63, 9, 55, 0.6)),
                      url("img/background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1; /* Place le fond en arrière-plan */
}


.seo {
    opacity: 0.001;
    position: absolute;
    z-index: -1;
}

main{
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 3em;
}

h1{
    margin-top: -5px;
    margin-bottom: -8px;
}

p {
    font-weight: bold;
}

.ddb{
    width: 15rem;
    border-radius: 100%;
    margin-bottom: -10px;
}

.btnLink{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: "Poppins-Bold";
    font-size: 1.5em;
    padding: 16px;
    margin-bottom: -14px;
    width: 18rem;
    cursor: pointer;
    border-radius: 10px;
    color: white;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}

.btnLink:first-of-type {
    margin-top: 1em;
}

.separation{
    background: rgb(255, 255, 255);
    width: 100%;
    height: 2px;
}

.twitch{
    margin-top: 3em;
    background-color: #6441a5;
}

.discord{
    background-color: #7289da;
}

.youtube{
    background-color: #c82b2b;
}
.whatnot{
    background-color: rgb(205, 187, 50);
}

.imgbtn{
    margin-left: -0.8rem;
    color: white;
    width: 2.5rem;
}

.btnLink:hover{
    transform: scale(1.05);
}

.smalltxt{
    font-size: .6em;
    font-family: "Poppins-Italic";
    margin-top: -18px;
}

.flexcenter{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.flexcol{
    display: flex;
    flex-direction: column;
}


.twitch-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.twitch-player {
    width: 100%;
    height: 30vh;
}

.btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.btns > button {
    padding: 1em;
    width: 50%;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Poppins-Bold";
}

.btns > button.tchat.active {
    background-color: #6441a5;
    color: white;
}

.btns > button.whatnot.active {
    background-color: #ffeb3b;
    color: black;
}

.content-container {
    position: relative;
    width: 100%;
    height: 70vh;
}

.twitch-chat,
.whatnot-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    display: none;
    overflow-y: auto;
}

.twitch-chat.active,
.whatnot-content.active {
    display: block;
}

@media (max-width: 400px) {
    .ddb{
        width: 9rem;
    }

    .btnLink{
        width: 80%;
    }
}