@import url('https://fonts.googleapis.com/css2?family=Alata&family=Cinzel:wght@500&family=Permanent+Marker&display=swap');
.header {
  /*font-family: "Copperplate", fantasy;*/
  font-family: 'Permanent Marker', cursive;
  font-size: 250%;
  text-align: center;
  text-shadow: 1px 1px 2px gold;
  border-style: solid;
  border-width: 3px;
  padding-bottom: 10px;
  background-color: gold;
  background: rgba(255,215,0,0.5);
}

.background {
  background-image: url("images/background.png");
  background-position: center;
  background-repeat: round repeat-y;
}

.paragraphe {
  /*font-family: "verdana";*/
  font-family: 'Cinzel', serif;
  font-size: 100%;
  text-align: center;
  border-style: solid;
  border-width: 3px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: gold;
}

.grille {
  font-family: 'Alata', sans-serif;
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 2px solid black;
  border-style: solid;
  border-width: 3px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: gold;
  font-size: 100%;
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  text-align: center;
}

.footer {
  /*font-family: "Copperplate", fantasy;*/
  font-family: 'Alata', sans-serif;
  font-style: italic
  font-size: 50%;
  text-align: center;
  border-style: solid;
  border-width: 3px;
  padding-bottom: 10px;
  background-color: gold;
  background: rgba(255,215,0,0.5);
}

.titre {
  /*font-family: "Copperplate", fantasy;*/
  font-family: 'Permanent Marker', cursive;
  text-decoration: underline;
}

.titre2 {
  /*font-family: "Copperplate", fantasy;*/
  font-family: 'Permanent Marker', cursive;
  text-decoration: underline;
  font-size: 200%;
}

.aside {
  border-radius: 25px;
  flex: 1;
  margin-left: 10px;
  margin-right:5px;
  font-family: "verdana";
  font-size: 150%;
  border-style: solid;
  border-width: 3px;
  padding-bottom: 10px;
  background-color: gold;
  float: right;
}


img {
border:5px solid black;
}
@media screen and (max-width: 700px) {
  .grille {
    display: inline-block;
    grid-template-columns: 1fr 2fr;
    border: 2px solid black;
    border-style: solid;
    border-width: 3px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: gold;
    font-size: 100%;
    grid-column-gap: 50px;
    grid-row-gap: 30px;
    text-align: center;
  }
  }
