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

body {
  background-color: rgb(255, 255, 255);
  background-image: url(/Images/sakura-home.png);
}

.background-image {
  background-size: cover;
}

section {
  padding: 70px 8%;
}

header {
  padding: 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo-div {
  width: 60%;
}
ul {
  display: flex;
  width: 80%;
  list-style: none;
}

ul li {
  padding: 10px 25px;
  text-align: center;
}
ul li a {
  text-decoration: none;
  color: #000000;
  transition: 0.5;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1px solid black;
  box-shadow: 1px 2px 1px 2px;
}

ul li a:hover {
  text-decoration: none;
  background-color: rgb(241, 202, 226);
  color: #000000;
  transition: 0.5;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1px solid black;
  box-shadow: 1px 2px 1px 2px;
}

.home-section {
  display: flex;
  justify-content: center;
  width: 100%;
}
.home-section .left {
  position: relative;
  height: 500px;
  width: 600px;
}
.home-section .left img {
  position: absolute;
  object-fit: cover;
  border: 2px solid #000;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
}
.home-section .left-image-1 {
  width: 400px;
  height: 450px;
  transition: 0.5s;
  z-index: 1;
}
.home-section .left-image-2 {
  width: 350px;
  height: 350px;
  top: 180px;
  left: 250px;
  transition: 0.5s;
  z-index: 2;
}

.home-section .left-image-1:hover {
  transform: scale(1.1) rotate(10deg);
  z-index: ;
}
.home-section .left-image-2:hover {
  transform: scale(1.1) rotate(-10deg);
  z-index: 2;
}

.right {
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  justify-content: nowrap;
  width: 30%;
  align-items: center;
}
.right .text-right {
  font-weight: bold;
  color: #000000;
}
.right h1 {
  margin: 0px;
  font-size: 25px;
  font-weight: bold;
  line-height: 50px;
}
.right p {
  margin-bottom: 25px;
  color: #999;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}

.logo-div .liste {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.texte {
  margin: 20px 30px;
  font-size: 16px;
}

.texte-right {
  font-size: 30px;
  text-decoration: underline;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.texte {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.texte h2 {
  text-decoration: underline;
}
.texte p {
  margin-top: 10px;
  line-height: 25px;
  text-align: justify;
  font-weight: bold;
  color: #000000;
  width: 70%;
}
