body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 100px;
  justify-content: center;
  --primary-color : #1fe3d9;
  --secondary-color: #ff6347;
  --tertiary-color: #ffffff; 
  color: var(--tertiary-color);
  background-color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  align-items: center;


}

div {
position: relative;
}

#soleil {
  position: absolute;
  z-index: 1;
  top: -160px;
  right: -400px;
  animation: rotate 1s infinite;

}

h1 {
  display: block;
  margin: 0px;
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 30px;
  box-shadow: 25px 25px 20px rgba(0, 0, 0, 0.6);
  transform: rotate(-5deg);
  width: 90%;
  max-width: max-content;
  animation: fadeInOut 1s infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.button {
  display: block;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 25px 25px 20px rgba(0, 0, 0, 0.6);
  color: #fff;
  background-color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
}

.button:hover {
  background-color: #f3a294;
}

label {
  display: block;
  font-size: 1.2em;
  margin: 10px;
  text-align: center;
  color: var(--tertiary-color);
  font-weight: bold;
}

.text-input {
  display: block;
  padding: 10px;
  background-color: var(--primary-color);
  border-radius: 30px;
  box-shadow: 25px 25px 20px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  margin: 10px auto;
  cursor: pointer;
  width: 90%;
}

.textarea {
  display: block;
  padding: 10px;
  background-color: #13d8ce;
  border-radius: 30px;
  box-shadow: 25px 25px 20px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  margin: 10px auto;
  cursor: pointer;
  width: 90%;
}

fieldset {
  display: block;
  padding: 10px;
  background-color: var(--secondary-color);
  border-radius: 30px;
  box-shadow: 25px 25px 20px rgba(0, 0, 0, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  margin: 10px auto;
  cursor: pointer;
  width: 90%;
}
