@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f2f5;
  color: #1c1c1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Zone principale */
main {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.1);
  padding: 60px 20px 40px;
  margin-top: 80px;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
}

/* Avatar */
.avatar {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kurty-pseudo {
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: 600;
  color: #888;
}

nav#moi {
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  border-bottom: 1px solid #d0dce7;
  text-align: center;
}

h1#speudo {
  font-size: 34px;
  color: #1e90ff;
  margin-bottom: 10px;
}

/* Sections */
section {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
}

section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1c1c1c;
  border-left: 5px solid #1e90ff;
  padding-left: 12px;
}

section h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #333;
}

/* Listes */
section ul {
  list-style: none;
}

section a,
section p {
  display: block;
  padding: 16px;
  margin-bottom: 14px;
  background-color: #ffffff;
  border: 2px solid #d0dce7;
  border-radius: 12px;
  text-decoration: none;
  color: #1e90ff;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

section a:hover {
  background-color: #e6f0ff;
  transform: translateY(-2px);
}

/* Images */
section a img,
section p img {
  vertical-align: middle;
  margin-right: 12px;
}

/* Présentation */
p.presentation {
  color: #555555;
  line-height: 1.6;
}

/* Espacement */
#espace {
  margin-top: 40px;
}

/* Mentions légales */
#mention1 {
  font-size: 0.75em;
  text-align: center;
  color: #888;
  margin-top: 40px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .avatar {
    width: 90px;
    height: 90px;
    top: -45px;
  }

  h1#speudo {
    font-size: 26px;
  }

  section h2 {
    font-size: 22px;
  }

  section a,
  section p {
    font-size: 15px;
    padding: 14px;
  }
} 
