@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,700;1,200&display=swap');

:root{
  --red: #fc4040;
  --white: #e0e0e0;
  --margin:17vw;
  --grey:#5c5c5c;
}

html{
  scroll-behavior:smooth;
}

body{
  margin: 0;
  background: #141414;
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
}

a{
  color: var(--white);
  text-decoration:none;
  transition: color 0.2s ease;
}

a:hover{
  color: var(--red);
}

header{
  text-align: center;
  margin-bottom: 100px;
  margin-top: 100px;
}

#wrapper{
  width: calc(100% - var(--margin));
  margin: auto;
  margin-left: var(--margin);
  box-sizing: border-box;
  padding-left: 5vw;
  padding-right: 5vw;
}

#glossaire{
  position: fixed;
  width: var(--margin);
  height: 100%;
  display: block;
  background: #1f1e1e;
  top: 0;
  box-sizing: border-box;
  padding: 40px;
}

#glossaire ol{
  padding-left: 0;
}

#glossaire li{
  margin: 10px 0;
}

#glossaire img{
  width: 70px;
  object-fit: contain;
}

#wrapper > section{
  padding-bottom: 30px;
  box-sizing:border-box;
}

#wrapper > section::after{
  content:'';
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--grey);
}

#archi ul{
  list-style: none;
}

.discrete{
  color: var(--grey);
}

#archi .link{
  min-width: 30px;
  display: block;
  height: 1px;
  background-color: var(--grey);
  margin: 0 10px;

}

#archi li{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.folder{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.folder .icon{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.folder p{
  margin-left: 5px;
}
