* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

html,
body {
    height: 100%;
    width: 100%;

    background-color: ffffff;
}

body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    background-color: #0091ff;
    background-image: url(./textura.png);
    background-size: cover;
    background-position: center;
}

canvas {
    height: calc((90vw - 400px) / 1.5);
    max-height: 90vh;
    aspect-ratio: 1.5 / 1;

    outline: solid 10px #39085c;
    /* border-bottom: solid 10px #664083cc;
    border-top: solid 10px #664083cc; */
    background-color: #ededed;
    border-radius: 5px;

    cursor: url(./curseurPinceauV2.png) 16 16, auto;
}

.options {
    width: 170px;
    max-height: 80vh;

    background-color: #ffffff47;
    border-radius: 15px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */

    padding-top: 4px;
    padding-bottom: 20px;
}

.options2 {
    width: 170px;
    max-height: 80vh;

    border-radius: 15px;
    border-radius: 15px;

    background-color: #ffffff47;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-bottom: 15px;
    padding-top: 5px;
}

.partieCouleur {
    width: 142px;
    margin-top: 10px;

    display: flex;
    flex-direction: column;
}

.partieCouleur>.mosaiqueCouleur {
    width: 100%;

    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 13px;
}


.partieCouleur>.mosaiqueCouleur>div {
    width: 38px;
    height: 38px;
    background-color: #fff;
    border-radius: 5px;
    border: solid 2px #39085c;
    box-shadow: 0 0 5px #000000dc inset;
    cursor: pointer;
}

.partieCouleur>input {
    margin-top: 14px;
}




.differentesOptionsTailles {
    width: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-top: 10px
}

.optionsTailles {

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    height: 35px;
}

.optionsTailles>div {
    border: 4px solid #1ba6fc;
    outline: 4px solid #ffffff57;


    background-color: #ffffff57;

    border-radius: 100px;
}


input[type="color"] {
    border: none;
    width: 146px;
    height: 45px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: solid 5px #48007a;
    border-radius: 5px;

    cursor: pointer;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}

.optionsDeDeplacementTemporelle {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.optionsDeDeplacementTemporelle>button {
    width: 40%;
    height: 100%;
    border: solid 5px #420072cc;
    background-color: #7f19c8;
    box-shadow: 0 7px #280c3c;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    justify-content: center;
    align-items: center;
}


.flecheNonInverse:active {
    box-shadow: 0 1px #280c3c, 0 10px 10px rgba(0, 0, 0, 0.324);
    transform: translateY(6px) scale(0.95);
}

.flecheInverse {
    transform: scaleX(-1);
}

.flecheInverse:active {
    transform: scaleX(-1) translateY(6px) scale(0.95);
    box-shadow: 0 1px #280c3c, 0 10px 10px rgba(0, 0, 0, 0.324);

}

.optionTypeOutil {
    width: 80%;
    aspect-ratio: 1 / 1;
    margin-top: 10px;

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.optionTypeOutil > div {
    width: 100%;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.optionTypeOutil > div > div {
    height: 100%;
    width: 60px;
    border: solid 5px #ffffffcc;
    background-color: #a6d8ff;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.5;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}