*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

.blue {
  color: #d59d22;
}

h1 {
  font-size: 5rem;
  color: #d59d22;
  padding-bottom: 20px;
}

h2 {
  color: black;
}

p span {
  color: #d59d22;
}

main {
    height: 75vh;
    margin-top: 200px;
}

.presentation-directeur {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.presentation p {
  font-size: 2rem;
  color: white;
}

.presentation {
  width: 50%;
  padding-left: 10rem;
}

.presentation-image {
  width: 40%;
}

.presentation-image img {
  width: 70%;
  border-radius: 50%;
  filter: grayscale(80%);
}

.presentation-site {
  margin-bottom: 200px;
  margin-right: auto;
  margin-left: auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 12px;
  grid-template-rows: repeat(5, 1fr);
  margin-bottom: 50px;
  margin-left: 96px;
}

.grid-item {
  padding: 20px;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: bold;
  transition: transform 0.3s;
}

.grid-item:hover {
  transform: scale(1.05) !important; /* Le important est nécessaire afin d'écraser la priorité de l'animation AOS */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.item1 {
  background-color: #d59d22;
  grid-column: 3 / 8;
  grid-row: 1 / 3;
}

.item1 > h2 {
  margin-bottom: 20px;
}

.item2 {
  background-color: whitesmoke;
  grid-column: 8 / 10;
  grid-row: 1 / 3;
}

.item2 > h2 {
  margin-bottom: 20px;
}

.item3 {
  background-color: whitesmoke;
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.item3 > h2 {
  margin-bottom: 20px;
}

.item4 {
  background-color: #d59d22;
  grid-column: 5 / 10;
  grid-row: 3 / 5;
}

.item4 > h2 {
  margin-bottom: 20px;
}

.item5 {
  background-color: whitesmoke;
  grid-column: 3 / 10;
  grid-row: 5 / 6;
}

.item6 {
  background-color: #222;
  grid-column: 2 / 3;
  grid-row: 1 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-align: center;
}

.item6 > .side-text {
  rotate: 180deg;
}

.item7 {
  background-color: #222;
  grid-column: 10 / 11;
  grid-row: 1 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-align: center;
}

.side-text {
  text-transform: uppercase;
  color: #d59d22;
}