@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    margin: 0;
    font-family: "Chakra Petch", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow-y: hidden;
}

html {
    /*margin: 5px;*/
    font-size: 15px;
}

h1 {
    font-family: "Chakra Petch", sans-serif;
    font-weight: bolder;
    font-size: 2.5rem;
    color: white;
}

code {
    font-family: 'Source Code Pro', monospace;
    color: white;
    font-weight: bolder;
    padding: 1px;
    font-size: 17px;
    background: rgba(255,255,255,0.3);
}

.code-clic, .code-clic-ligne, .code-clic-colonne {
    cursor: grab;
}

li {
    color: white;
    line-height: 1.3;
    margin: 3px 0 0 15px;
}

.left {
    max-width: 50%;
    height: 100%;
    position: fixed;
    background: linear-gradient(214deg, rgb(245, 98, 0) 0%, rgba(204,82,0,1) 52%, rgba(163,65,0,1) 99%);
}

body {
    background: linear-gradient(90deg, rgb(245, 98, 0) 0%, rgba(204,82,0,1) 52%, rgba(163,65,0,1) 99%);
}

.mobile {
    width: 100%;
    height: 1500px;
    display: none;
    position: fixed;
    background: linear-gradient(120deg, rgb(245, 98, 0) 0%, rgba(204,82,0,1) 52%, rgba(163,65,0,1) 99%);
    z-index: 1;
}

.mobile h1 {
    text-align: center;
    margin-top: 10%;
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .mobile {
        display: block;
    }
}
