/* Styles généraux */
body {
    font-family: Arial, sans-serif;
}
h1 {
    text-align: center;
}
p {
    margin: 20px auto;
    width: 75%;
}
a {
    color: #3498db; /* Couleur de Mozilla Firefox */
}

/* Menu */
/*
nav ul {

    list-style-type: none;
    padding: 0;
}
.menu a {
    display: block;
    padding: 15px;
    text-decoration: none;
}
li:not(:first-child) { border-left: 2px solid rgba(36,46,55,.2); } /* Utilisation de la couleur du thème de Firefox */
.menu a:hover {
    background-color: #09f; /* Couleur de survol pour Firefox */
}*/

nav {
  margin: 25px;
  background: #f9f9f9;
  padding: 16px;
  .menuItems {
    list-style: none;
    display: flex;

    li {
      margin: 50px;

      a {
        text-decoration: none;
        color: #8f8f8f;
        font-size: 24px;
        font-weight: 400;
        transition: all 0.5s ease-in-out;
        position: relative;
        text-transform: uppercase;

        &::before {
          content: attr(data-item);
          transition: 0.5s;
          color: #8254ff;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          width: 0;
          overflow: hidden;
        }

        &:hover {
          &::before {
            width: 100%;
            transition: all 0.5s ease-in-out;
          }
        }
      }
    }
  }
}

/* Responsivité */
@media (max-width: 768px) {
	.header, .footer { text-align: center; }
}