@charset "UTF-8";

/* Background gradient */

body {
  margin: 0;
  background: linear-gradient(3000deg, #DC4900 0%, #A58383 40.99%, #A58383 60.99%,#A00000 100%);
  font-family: 'Roboto Condensed';
  font-size: 22px;
}

/* Header: Listen Again */
header {
  color: #000;
  text-align: center;
  font-family: OrganGrinder;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

/* Section styling */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

section {
  display: flex;
  flex-wrap: wrap; /* Permet d'aller à la ligne si les conteneurs ne tiennent pas */
  justify-content: center; /* Centre horizontalement */
  gap: 20px; /* Espacement entre les conteneurs */
  padding: 20px;
}

h1 {
  font-family: 'Roboto Condensed';
  font-size: 76px;
  color: #9A0000;
}

h2 {
  font-family: 'Roboto Condensed';
  font-size: 20px;
}

h3 {
  font-family: 'Roboto Condensed';
  font-size: 40px;
}
a:link {
  color: white;
}


h4 {
  font-family: 'Roboto Condensed';
  font-size: 30px;
  color: #EAEAEA;
	
  margin: 10px;
}
a:link {
  color: transparent;
}

p {
  font-family: 'Roboto Condensed';
  font-size: 35px;
  color: #FFFFFF;
  margin: 10px;
}

.nom {
  font-size: 20px;
}

.miniprojet {
  position: relative;
  display: grid;
  place-items: center;
  width: 350px;
  min-height: 350px;
  background-color: #6F0606;
  box-shadow: 10px 10px 30px 5px #780000;
  font-family: "Roboto Condensed";
  overflow: auto;
  color: #F0F0F0;
  text-align: center;
}

/* Paragraph text */
.project-info p {
  color: #000;
  text-align: center;
  font-family: "EB Garamond";
  font-size: 20px;
}

/* Image styling */
.project-image img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Audio player */
.audio-player {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

audio {
  width: 80%;
}
