/*
Theme Name:  Lorem Ipsum
Author:      Alice, Pierre, Solen
Author URI:  https://alicesix.fr/
Description: Ceci n'est pas un thème enfant, pour en savoir plus sur la création d'un thème : https://developer.wordpress.org/themes/basics/
Version:     1
*/

/* NE PAS MODIFIER CE FICHIER CSS */
/* LES MODIFICATIONS SONT A ECRIRE DANS les fichiers scss du dossier /assets/css/ */

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  background-color: gray;
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
}
.test {
  width: 2rem;
  height: 2rem;
  background-color: blue;
}
.active {
  background-color: red;
}
main {
  padding: 6rem 2rem;
}