* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;

  text-wrap: balance;

  /* border: solid red 1px; */
}

body {
  height: 100dvh;
  padding: 5px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;

  background-color: rgba(245, 222, 179, 0.89);
}

main {
  width: clamp(300px, 89%, 1000px);

  display: flex;
  flex-direction: column;
  gap: 21px;

  /* border: solid red; */
}

.logo {
  height: 130px;
  aspect-ratio: 1/1;

  background-image: url(./assets/img/ori_logo_main_colored.png);
  background-size: contain;
  background-repeat: no-repeat;
}

h1 {
  font-size: 1.3rem;
  font-family: serif;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  opacity: 0.55;

  transition: all 0.34s ease-in-out;

  &:before,
  &:after {
    transition: all 0.34s ease-in-out;
  }

  &:before {
    content: "✨";
    position: relative;
    opacity: 0;
    left: -8px;
  }

  &:after {
    content: "sur nos services";
    position: relative;
    opacity: 0;
    right: -8px;
  }
}

button:hover {
  opacity: 1;

  &:before {
    content: "✨";
    opacity: 1;
    left: 0;
  }

  &:after {
    content: "sur nos services";
    opacity: 1;
    right: 0;
  }
}

baseline p {
  font-weight: bold;
  font-size: 5vw;
}

p {
  font-size: 1rem;
}

.cta {
  font-style: italic;
  font-size: 1rem;
  list-style: none;

  border-radius: 8px;
  padding: 13px;
  background-color: rgba(245, 245, 245, 0.89);
}

footer p {
  font-size: 0.89rem;
}

.highlight {
  color: whitesmoke;
  background: linear-gradient(35deg, red, yellow);

  background-clip: text;
  color: transparent;

  animation: hueColor 02.1s linear infinite alternate;
}

@keyframes hueColor {
  from {
    filter: hue-rotate(180deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

@media screen and (min-width: 500px) {
  baseline p {
    font-weight: bold;
    font-size: 3rem;
  }
}
