@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");

/* *********************************PAGE D'ACCUEIL******************************* */
* {
  padding: 0px;
  margin: 0;
}
body {
  width: 100%;
  font-family: "DM Serif Display", serif;
  background: rgb(229, 229, 190);
  background: -webkit-linear-gradient(
    85deg,
    rgba(229, 229, 190, 1) 0%,
    rgba(0, 57, 115, 1) 99%
  );
  background: linear-gradient(
    0deg,
    rgba(229, 229, 190, 1) 0%,
    rgba(0, 57, 115, 1) 99%
  );
}
.contener{
  width: 100%;
}
h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 2px 3px rgba(255, 245, 238, 0.719);
  margin-bottom: 30px;
}

h2 {
  font-size: 1.8rem;
  font-family: "Lobster Two", cursive;
  text-shadow: 2px 2px 3px rgba(255, 245, 238, 0.719);
}
.Fly {
  display: grid;
  grid-template-columns: 60% 40%;
  margin: 1rem;
}
.Photo-Fly {
  background: url(./assets/peche1.jpg) no-repeat center/cover;
  border-radius: 5px;
}

.Photo-Bourse {
  background: url(./assets/bannierebourse.jpg) no-repeat center/cover;
  border-radius: 5px;
}
.Bourse {
  display: grid;
  grid-template-columns: 40% 60%;
  margin: 1rem;
}

.Dev-Web {
  display: grid;
  grid-template-columns: 60% 40%;
  margin: 1rem;
}
.Photo-Dev-Web {
  background: url(./assets/dev1.jpg);
  border-radius: 5px;
}
.Fly,
.Bourse,
.Dev-Web {
  min-height: 300px;
  margin-top: 15px;
}
.text,
.text-3 {
  position: relative;
  border-radius: 5px 0px 0px 5px;
  padding-left: 10px;
  box-shadow: -1px -2px 10px black;
}
.text-2 {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 0px 5px 5px 0px;
  box-shadow: 2px -1px 10px black;
}
.plus {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.plus a {
  text-decoration: none;
  color: black;
  border: 0.1rem solid black;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  transition: 0.3s ease;
}
a:hover {
  color: seashell;
  transform: scale(1.2);
  padding-left: 15px;
  background-color: grey;
}
/************ btn-Retour Accueil ************/
.btn {
  width: 100%;
  position: relative;
  margin-top: 80px;
  margin-bottom: 50px;
  text-align: center;
}
.btn a {
  position: relative;
  margin-left: auto;
  text-decoration: none;
  color: slategray;
  line-height: 1.4rem;
  padding: 10px;
  text-align: center;
  border: 1px solid seashell;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s ease;
}
.btn a:hover {
  transform: scale(1.1, 1.1);
  background-color: grey;
  box-shadow: inset 2px 2px 2px rgb(77, 77, 77);
}
.btn a:hover {
  color: white;
}
/********************** Responsive ********************/
