body {
  font-family: 'Kanit', sans-serif;
  margin: 0 3.75rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #e5f1db;
}

.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75rem;
}

.content {
  flex: 1;
  padding: 1.25rem;
  text-align: left;
}

.slider {
  flex: 1;
  padding: 1.25rem;
  overflow: hidden;
  max-height: 25rem;
  border-left: 0.0625rem solid #1e1e1e;
  scroll-behavior: smooth;
}

.titre {
  margin-bottom: 1.25rem;
}

.box1, .box2 {
  margin-bottom: 0.625rem;
}

.box2 p {
  margin-bottom: 80px;
  font-size: clamp(1rem, 0.8328rem + 0.7643vw, 1.75rem);
  font-style: italic;
}

#ensemble-id{
  color: #4c7b64;
}

#ensemble-title h1 {
  font-size: clamp(2rem, 4vw, 6rem);
  text-align: left;
}

#combinaisons {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: none;
}

#combinaisons::-webkit-scrollbar {
  display: none;
}

.grid-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.625rem;
  margin-bottom: 0.625rem;
  background-color: #f9f9f9;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.1);
}

.numero {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: thin;
  margin: 0 1.250rem 0 0.625rem;
}

.phrase {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  flex: 1;
  text-align: left;
}

button {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.3125rem;
  background-color: #4c7b64;
  color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Kanit', sans-serif;
}

button:hover {
  background-color: #3d6552;
}