body {
  background-color: #c9d6ef;
}

/* Contenu */

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 270px 50px;
  margin: auto;
  margin-top: 30px;
  width: 600px;
}

.content {
  grid-column: 1/5;
  grid-row: 1/3;
  height: fit-content;
  padding: 30px;
  border: 3px solid #4f81bd;
  background: linear-gradient(#cddaf1, #e4ebf7);
}

h2 {
  margin: 0;
}

.title {
  text-align: center;
}

.text {
  text-align: justify;
  font-size: 20px;
}

.img_spectateur {
  grid-row-start: 4;
  grid-column: 1;
  margin: auto;
  width: 130px;
}

/* Media queries */
@media screen and (max-width: 800px) {
  .grid {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 30px;
    width: 90%;
  }

  .img_spectateur {
    width: 40%;
  }

  .text {
    font-size: 16px;
  }
}
