/*STRUCTURE*/
@font-face {
    font-family: CircularStd-Book;
    src: url(/Presentation-ModuleCode/font/CircularStd-Book.otf);
}

@font-face {
    font-family: CircularStd-Bold;
    src: url(/Presentation-ModuleCode/font/CircularStd-Bold.otf);
}

body {
    margin: 0;
    background-color: whitesmoke;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: whitesmoke;
}

::-webkit-scrollbar-thumb {
    background: rgb(183, 119, 41);
}

.structure {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;

}

.tabs {
    display: flex;
    flex-direction: row;
    position: relative;
}

.pages {
    width: 150px;
    background-color: whitesmoke;
    font-family: CircularStd-Bold;
    color: rgb(183, 119, 41);
    border: solid 1px rgb(183, 119, 41);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: rotate(-90deg);
    margin-bottom: 10px;


}

.pages:hover {
    color: whitesmoke;
    font-family: CircularStd-Bold;
    background-color: rgb(183, 119, 41);
    border: solid 1px whitesmoke;
    transition: all 0.3s ease-out;
}

.pages h3 {
    transform: rotate(-90deg);
}


.contenu {
    display: none;
    padding: 20px;
    background-color: whitesmoke;
    border: 1px solid rgb(183, 119, 41);
    color: rgb(183, 119, 41);
    font-family: CircularStd-Book;
    position: relative;
    top: 0;
    margin-left: -1px;
    height: 100vh;
    overflow-y: scroll;

}

.contenu.active {
    display: block;
    padding: 50px;
    margin-bottom: 50px;
}

.txtmd img {
    margin-top: 20px;
    width: 500px;
}

.textmd {
    padding-bottom: 10vh;
}

.txtmd p {
    line-height: 18px;

}

p {
    margin-top: 0;
}

.style p {
    width: 75%;
    text-align: justify;

}

button {
    border: solid 1px rgb(183, 119, 41);
    border-radius: 10px;
    background-color: rgb(234, 207, 174);
    font-family: CircularStd-Bold;
    color: rgb(183, 119, 41);
    cursor: pointer;
}

button:hover {
    border: solid 1px whitesmoke;
    border-radius: 10px;
    background-color: rgb(183, 119, 41);
    font-family: CircularStd-Bold;
    color: whitesmoke;
    transition: all 0.3s ease-out;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    /* Hide the button by default */
    background-color: rgb(183, 119, 41);
    color: whitesmoke;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: CircularStd-Book;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: rgb(153, 89, 11);
}

/*CSS DES PROGRAMMES*/

/*PROGRAMME 1*/

#prog1 {
    position: relative;
}

#scene {
    margin-top: 10px;
    position: relative;
    width: 500px;
    font-size: 0;
    margin-bottom: 40px;
}

/*PROGRAMME 2*/

#canvas2 {
    margin-top: 10px;
    border: solid 1px rgb(183, 119, 41);
    margin-bottom: 50px;
}

/*PROGRAMME 3*/

#container {
    margin-top: 10px;
    border: solid 1px rgb(183, 119, 41);
    margin-bottom: 50px;
    height: 500px;
    width: 500px;
}

.boite {
    background-color: blue;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
}

/*PROGRAMME 4*/

#receptacle {
    width: 500px;
    height: 500px;
    margin-top: 10px;
    border: solid 1px rgb(183, 119, 41);
    margin-bottom: 50px;
    font-size: 0;
}

/*PROBRAMME 5*/

#scene2 {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.emplacement1 {
    height: 500px;
    width: 500px;
    margin-top: 10px;
    margin-bottom: 50px;

}

.emplacement2 {
    height: 500px;
    width: 500px;
    padding-bottom: 10px;
}

#motifs_2 {
    mix-blend-mode: multiply;
    position: absolute;
    left: 60px;
}

#motifs_3 {
    left: -500px;
    top: 90vh;
}

#motifs_4 {
    mix-blend-mode: multiply;
    padding-bottom: 50px;
    position: absolute;
    left: 0;
    top: 570px;
    height: 500px;
    width: 500px;

}