body {
  font-family: system-ui, sans-serif;
  background-color: rgba(44, 66, 81, 0.05);
  color: #2C4251;
}

.div_box {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.box {
  text-align: center;
  background: rgba(255, 255, 240, 0.75);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.streaming-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 25px 0;
  font-size: xx-large;
  padding: 12px 0;
}

.icon-link {
  color: #2C4251;
  transition: transform 0.2s, color 0.2s;
}

.icon-link:hover {
  color: #152028;
  transform: scale(1.2);
}

.rotation-image {
  transition: transform 0.6s ease;
}

.icon-link:hover .rotation-image {
  transform: rotate(360deg);
}

.visuel_2 {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  border-radius: 12px;
}

.visuel_1 {
  margin: 6px;
  max-width: 5%;
  border-radius: 12px;
}

header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  margin: 0 auto;
  max-width: 95%;
  background: rgba(255, 255, 240, 0.75);
  border-radius: 12px;
}

.div_header {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

footer {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  margin: 0 auto;
  max-width: 95%;
  border-radius: 12px;
  background: rgba(255, 255, 240, 0.75);
}

.div_footer {
  display: flex;
  justify-content: center;
  gap: 25%;
}

.lien_footer {
  color: #2C4251;
  font-size: smaller;
}

button {
  cursor: pointer;
  padding: 8px;
  font-size: x-small;
  border-radius: 12px;
  color: #2C4251;
}

.div_form {
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
  border-radius: 12px;
  margin: 0px auto;
  width: 50%;
}

.btn-submit {
  cursor: pointer;
  padding: 10px 18px;
  font-size: medium;
  border: none;
  border-radius: 12px;
  background: #2C4251;
  color: ivory;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
}

.btn-submit i {
  transition: transform 0.4s ease;
}

.btn-submit:hover {
  background: #152028;
  transform: scale(1.05);
}

.btn-submit:hover i {
  transform: translateX(6px) rotate(15deg);
}
