body {
  background-color:#121212;
  color: white;
  font-family: "Outfit";
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;

}

a {
  color: white;
  text-decoration: none;
}

header {
  margin-top: 2vh;
  text-align: center;
}

#current {
  background-color: #2e2e2e ;
  border: 2px solid #ffffff;
}

header button {
  font-size: 1rem;
  background-color: #1e1e1e;
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  margin-right: 4px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
}



main {    
  width: 80%;  
  font-size: 0.9rem;
}

.quote {
  background-color: #1e1e1e;
  padding: 8px 25px;
  border-radius: 5px;
  margin-top: 20px;

}

.sections {
  margin-top: 20px;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

svg {
  vertical-align: middle;
  margin-right: 5px;
}

.section {
  flex: 1 1 30%;
  margin: 0;
  background-color: #1e1e1e;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  padding: 15px 25px;
}


.section a {
  text-decoration: none;
  color: white;
  transition: color 0.2s;
}

.section a:hover {
  color: #737a6d;
}

.liens {
  text-decoration: underline !important;

}