/* Réinitialisation des marges et des paddings */
body,
ul {
  margin: 0;
  padding: 0;
}

/* Styles pour le layout de base */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #d3f4ec;
}

main {
	position: relative;
	box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding-top: 40px;
	margin-top: 60px;
}

.avatar {
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
	border-radius: 50%;
	height: 100px;
	width: 100px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.kurty-pseudo {
  position: absolute;
  top: 0;
  right: 20px;
}

.avatar > img {
	width: 100px;
	object-fit: contain;
}

nav#moi {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  background-color: #bfd1d1;
}

h1#speudo {
  color: #0606ff;
  font-size: 32px;
  margin: 10px 0;
}

#application,
#propos,
#setup,
#reseau {
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

#application ul,
#propos ul,
#setup ul,
#reseau ul {
  list-style: none;
  padding: 0;
  
}

#application a,
#propos p,
#setup a,
#reseau a {
  text-decoration: none;
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 10px 0;
  background-color: #f9f9f9;
}

#application a,
#setup a,
#reseau a {
  color: #0606ff;
}

#application a img,
#propos p img,
#setup a img,
#reseau a img {
  vertical-align: middle;
  margin-right: 10px;
}

#propos  h3{
  padding: 10px;
}

#application h2,
#propos h2,
#setup h2,
#reseau h2 {
  padding: 10px;
  margin-top: 0;
  color: #333;
  font-size: 24px;
}

#reseau h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
}

/* Couleur du texte */
p.presentation {
  color: #555;
}

#espace{
  margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  #application,
  #propos,
  #setup,
  #reseau {
    width: 100%;
    padding: 10px;
  }

  h1#speudo {
    font-size: 28px;
    margin: 5px 0;
  }

  #application h2,
  #propos h2,
  #setup h2,
  #reseau h2,
  #reseau h3 {
    font-size: 20px;
  }
}
#mention1 {
  font-size: 0.2em;
}