@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

/* ------------------ Basic Code ------------------ */
*, div, p, img {  
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* ------------------ Body ------------------ */
body {
  width: 100vw;
  height: 100vh;
  color: #111;
  background: #eee;
  font-family: 'Alata', sans-serif;
  font-size: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

a {
  color: #000; 
  text-decoration: none;
}

a:hover {color: #444}

/* ------------------ Dark Mode System ------------------ */
/* root couleurs generales */
:root {
  --couleur-superdark: #111;
  --couleur-dark: #191919;
  --couleur-semidark: #1e1e1e;
  --couleur-creme: #eee
  }

/* ------------------ Dark Mode System ------------------ */
/* Couleurs Version Sombre */
@media (prefers-color-scheme: dark) { 
:root {
  --couleur-text-pri: var(--couleur-creme);
  --couleur-text-invert: var(--couleur-dark);
  --couleur-text-sec: #191919;
  --couleur-text-ter: #191919;

  --couleur-bg-pri: var(--couleur-semidark);
  }
}

/* Couleurs Version Clair */
@media (prefers-color-scheme: light) { 
:root {
  --couleur-text-pri: var(--couleur-dark);
  --couleur-text-invert: var(--couleur-creme);
  --couleur-text-sec: #191919;
  --couleur-text-ter: #191919;
 
  --couleur-bg-pri: var(--couleur-creme);
  }
}

/* body */
body {
    color: var(--couleur-text-pri);
    background: var(--couleur-bg-pri);
}



/* ------------------ Page Title ------------------ */
.pagetitle {
  position: fixed; 
  top: 0; 
  left: 0;
  padding: 20px;
  font-size: 1.2em;
  color: rgb(131, 127, 127);
}


/* ------------------ Cards Launcher ------------------ */
.boxlauncher {
  position: relative;
}

.boxlauncher a {
    width:100px; 
    height:100px; 
    border-radius:10px; 
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 10px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    background: #fff;
    color: #444;
    padding: 10px;
}

.boxlauncher a:hover {
  color: #111;
  background: rgb(236, 230, 230);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.enbasadroite {position:fixed; bottom: 5px; right: 5px;}
.enbasadroite a {
    width:20px; 
    height:20px; 
    border-radius:50%; 
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 10px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    background: #fff;
    color: #444;
    padding: 10px;
}
.enbasadroite a:hover {
  color: #111;
  background: rgb(236, 230, 230);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ---- Marked corner ---- */
.folder::after {
  /*content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  background: transparent;
  width: 0;
  width: 0;
  border-left: 0px solid green;
  border-right: 70px solid var(--couleur-bg-pri);
  border-bottom: 40px solid transparent;*/
}

.folder::before {
  content: "+";
  font-size: 2em;
  position: absolute;
  top: -3px;
  right: 11px;
  z-index: 1;
  color: var(--couleur-text-invert);
}