:root {
    --light-color: rgb(255, 213, 220);
    --dark-color: rgb(47, 47, 47);
}

/***********    BODY    ***********/
* {
    margin: 0;
    padding: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: Raleway, Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: inherit;
    list-style: none;
}

html, body {
    height: 100%;
}

div.wrapper /* Global div */ {
    background-color: var(--light-color);
    background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z' fill='%23ffc2cc' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");    font-family: Raleway, Helvetica, Arial, sans-serif;
    color: var(--dark-color);
    min-height: 100%;
    position: relative;
}
div.wrapper.Home /* Global div for "Home" section*/ {
}

a.button /* a link as a button */ {
    transform: scale(1);
    transition-property: transform;
    transition-duration: 750ms;
}

a.button:hover /* a link as a button */ {
    transform: scale(1.05);

}

hr.divider /* Separator */ {
    border: 10px solid var(--dark-color);
    border-radius: 5px;
    margin-top: 1em;
    margin-bottom: 1em;
}

/***********   HEADER   ***********/

div.header /* Header div */ {
    background-color: var(--dark-color);
}
div.header.Home /* Header div for "Home" section*/ {
}

ul.navBar /* Nav bar ul */ {
    gap: 0.625rem;
    flex-direction: row;
    flex-wrap: wrap;
    cursor: default;
    display: flex;
    letter-spacing: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
}
ul.navBar > li /* Element of nav bar */ {
    max-width: 100%;
}
ul.navBar > li > a /* Link of nav bar */ {
    display: inline-flex;
    width: 9.625rem;
    height: 2.125rem;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 2px 6px 2px 6px;
    vertical-align: middle;
    color: var(--dark-color);
    border: solid 2px #D1D1D1;
    background-color: var(--light-color);
    cursor: pointer;
    align-items: center;
}
ul.navBar > li > a:hover {
    border-color: red;
    color: red;
}
ul.navBar > li > a:hover > svg {
    filter: invert(26%) sepia(69%) saturate(5455%) hue-rotate(351deg) brightness(90%) contrast(132%); /*https://codepen.io/sosuke/pen/Pjoqqp*/
}
ul.navBar > li > a > svg /* Icon of nav bar */ {
    width: 2em;
    height: 2em;
}
ul.navBar > li > a > svg > image /* Icon of nav bar */ {
    width: 2em;
    height: 2em;
}
ul.navBar > li > a > span /* Label of link */ {
    padding-left: 0.25em;
}

/***********    MAIN    ***********/

div.main /* Main content div */ {
    padding-top: 1em;
    padding-bottom: 200px;
    padding-left: 5%;
    padding-right: 5%;
}
div.main.Home /* Main div for "Home" section*/ {
}

h1.sectionTitle /* Title of each section */ {
    text-align: center;
    font-size: 2.25em;
    line-height: 1.375;
    font-weight: 500;
}

h2.partTitle  /* Title for parts in a section */ {
    text-align: center;
    font-size: 1.75em;
    line-height: 1.375;
    font-weight: 300;
    padding-top: 0.5em;
    padding-bottom: 0.25em;
}

p.sectionText /* Default text */ {
    text-align: center;
    font-size: 1.25em;
}

div.image /* Default image div */ {
   text-align: center;
   margin: 1em;
}
div.image > img /* Default image div */ {
    border-radius: 50%;
    width: 200px;
    vertical-align: top;
}

span.highlight /* Highlight a part of a text */ {
    font-weight: 600;
    color: blue;
}

span.strongHighlight /* Highlight a part of a text stronger */ {
    font-weight: 600;
    color: red;
}

strong /* Bold in a text */ {
    font-weight: 600;
}

div.gallery /* Drawing gallery div */ {
}
div.gallery > ul /* Drawing gallery list */ {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
}
div.gallery > ul > li /* Drawing gallery element */ {
}
div.gallery > ul > li > img.default /* Drawing gallery "default" image */ {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(1);
    transition-property: transform;
    transition-duration: 200ms;
    z-index: 1;
    position: sticky;
}
div.gallery > ul > li > img.default:hover /* Drawing gallery "default" image */ {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(1.25);
    transition-delay: 100ms;
    z-index: 2;
    position: sticky;

}
div.gallery > ul > li > img.emote /* Drawing gallery emote format image */ {
    width: 240px;
    height: 100%;
    object-fit: cover;
}

/***********   FOOTER   ***********/

div.footer /* Footer div */ {
    background-color: var(--dark-color);
    color: var(--light-color);
    position: absolute;
    bottom: 0;
    width: 100%;
}
div.footer.Home /* Footer div for "Home" section*/ {
}

ul.icons /* List of clickable icons */ {
    margin-top: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    letter-spacing: 0;
    padding: 0;
    gap: 0.625rem;
    flex-direction: row;
}
ul.icons > li /* Elements of clickable icons */ {
    transform: scale(1);
    transition-property: transform;
    transition-duration: 1000ms;
}
ul.icons > li:hover /* hovering on Elements of clickable icons */ {
    transform: scale(1.15);

}
ul.icons > li > a /* Link of clickable icon */ {
    border-radius: 100%;
    height: 4em;
    width: 4em;
    border: solid 1px var(--dark-color);
    align-items: center;
    display: flex;
    justify-content: center;
    filter: invert(79%) sepia(8%) saturate(735%) hue-rotate(303deg) brightness(105%) contrast(112%);
}
ul.icons > li > a:hover {
    border-color: red;
    color: red;
    filter: invert(26%) sepia(69%) saturate(5455%) hue-rotate(351deg) brightness(90%) contrast(132%); /*https://codepen.io/sosuke/pen/Pjoqqp*/
}
ul.icons > li > a svg {
    width: 2em;
    height: 2em;
}
ul.icons > li > a svg > image {
    width: 2em;
    height: 2em;
}

div.credits /* Credits div */ {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
div.credits > a /* Credits button */ {
    padding: 2px 6px 2px 6px;
    border: 0;
    cursor: pointer;
}
div.credits > a:hover {
    background-image: linear-gradient(30deg, #A464A1 15%, #3B5DAD 85%);
    border-radius: 5px;
    padding: 2px 6px 2px 6px;
}


