<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #0b0b0b;
    color: aliceblue;

    display:flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}





/* Applique les styles personnalisÃ©s Ã&nbsp; la scrollbar pour les navigateurs Firefox */
#bob::-webkit-scrollbar {
    width: 20px; /* Largeur de la barre de dÃ©filement */
    height: 20px; /* Largeur de la barre de dÃ©filement */
}

#bob::-webkit-scrollbar-track {
    background: transparent; /* Fond transparent */
}

#bob::-webkit-scrollbar-thumb {
    background: rgb(115, 115, 115); /* Couleur de la barre de dÃ©filement */
    border-radius: 10px; /* Bords arrondis */
}

#bob::-webkit-scrollbar-button {
    display: none; /* Cache les flÃ¨ches de dÃ©filement */
}



.etage1 {
    width: 80%;
    height: 45px;

    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
}

input {
    height: 100%;
    text-align: center;
    border: none;
    border-radius: 10px;
    width: 80px;
    font-weight: bold;
    font-size: 1.5rem;
    padding-left: 12px;
}
input:focus {
    outline: none;
}

button {
    height: 100%;
    text-align: center;
    border: none;
    border-radius: 10px;
    width: 70px;
    font-weight: bold;
    font-size: 1.7rem;

    cursor: pointer;

    /* box-shadow: 0 0 20px wheat; */

    box-shadow: 0 5px #484848;
    transition: .2s;
}

button:active {
    box-shadow: 0 0 10px #ffffff38;
    transform: translateY(5px) scale(0.95);
}

.etage2 {
    height: calc(100% - 200px);
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

#bob {
    height: 500px;
    width: 500px;

    box-shadow: 0 0 25px #ffffff4e;
    overflow-x: scroll;
    overflow-y: scroll;
    padding: 20px;
    font-weight: bold;
    font-size:20px;
    line-height: 20px;
}
.zoom {
    color: #0b0b0b;
    background-color: white;
    height: 70px;
    width: 70px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 4rem;
    font-weight: 900;
    cursor: pointer;
}
</pre></body></html>