@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0B0B0D;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: 'Manrope', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeContainer 1.4s ease forwards;
}

.logo {
  color: #E6E6E6;
  font-size: 80px;
  font-weight: 800;
  text-transform: lowercase;
  line-height: 1;
  letter-spacing: 12px;
  animation: logoSpacing 1.6s ease forwards;
}

.tagline {
  margin-top: 28px;
  color: #8A8F98;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeTagline 1s ease forwards;
  animation-delay: 1.1s;
}

@keyframes fadeContainer {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoSpacing {
  from {
    letter-spacing: 6px;
  }
  to {
    letter-spacing: 18px;
  }
}

@keyframes fadeTagline {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links{
    margin-top:40px;
    display:flex;
    gap:30px;
    }
    
    .links a{
color:#6F757C;
text-decoration:none;
font-size:11px;
letter-spacing:2px;
position:relative;
}

.links a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0%;
height:1px;
background:#6F757C;
transition:width 0.3s ease;
}

.links a:hover::after{
width:100%;
}
    3️⃣ Résultat visuel