* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #cc9043, #855b23);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

section {
  width: 100%;
  text-align: center;
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  color: white;
}

h3 {
  color: white;
  margin: 20px;
  font-weight: 600;
}

a {
  display: inline-block;
  color: #855b23;
  background: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

#liens-travaux {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 250px;
}

a:hover {
  transform: scale(1.1);
}

img {
  position: absolute;
  height: 100px;
  bottom: -18px;
  left: -18px;
  animation: roll 10s linear infinite;
}

@keyframes roll {
  0% {
    left: -18px;
    transform: rotate(0deg);
  }
  50% {
    left: calc(100% - 82px);
    transform: rotate(2060deg);
  }
  100% {
    left: -18px;
    transform: rotate(0deg);
  }
}
