:root body{
	--player-col1:white;
	--player-col2:#328cc0;
	--player-odd:#a1dff2;
	--player-even:white;
	--player-bar1:#328cc0;
	--player-bar2:#a1dff2;
	--player-text:black;
}

body {
    background: repeating-linear-gradient(
        to right,
        var(--player-odd),
        var(--player-odd) 150px,
        var(--player-even) 150px,
        var(--player-even) 300px
    );
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: justify;
    font-size: 1.2rem;
    color: var(--player-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    font-family: "Sour Gummy", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
    color: var(--player-col2);
}

header h1 {
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 8rem;
    color: var(--player-text);
}

p {
    line-height: 1.6;
}

img.pochette {
    max-width: 500px;
}

body .player .pochette{
	display: none;
}

body .player::after {
    display: none;
}

a {
    color: var(--player-col2);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.pipette {
    position: fixed;
    z-index: -100;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    transition: opacity 1s ease-out;
}

/* Version mobile */

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    header h1 {
        font-size: 4rem;
    }

    img.pochette {
        max-width: 100%;
    }

    .pipette {
        width: 15px;
        height: 15px;
    }
}