/* Reset simple */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background-image: url('DIMITRIcanva.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Barre de navigation */
nav {
  display: flex;              /* logo + liste sur une ligne */
  align-items: center;        /* alignement vertical centré */
  justify-content: center;    /* centre tout au milieu */
  padding: 10px;
  background-color: #180306;
  height: 90px;
  border-bottom: 2px solid #ffffff; 
}

main {
  padding: 2% ;
  margin: 20px 25%;
  margin-bottom: 100px;
  text-align: center;
  background-color: #180306;
  border-radius: 5px;
  border: 4px solid white;
}

/* Logo (image) */
nav > a img {
  height: 30px;
}

/* Liste du menu */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;    /* centre les catégories */
  gap: 30px;
  margin: 0;
  padding: 0;
}
/* Liens du menu */
nav ul a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

body > a {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 100;
}

.photo_cv {
  
  width: 150px;
  height: 150px;
  border: 3px solid #ffffff;
  margin: 5%;
  border-radius: 5px;
}

body a img {
  width: 50px;
  height: 50px;
  border-radius: 30%;
  transition: all 0.1s ease;
}

body a img:hover {
  border: 2px solid #350a0f;
  transform: scale(1.1);
  background-color: #350a0f;
  box-shadow: 0px 0px 15px #fff;
  padding: 5px; 
}

nav ul li a {
  display: block;
  padding: 10px 15px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  border: 2px solid #fff;
  transform: scale(1.1);
  color: #350a0f;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px #fff;
}

MARQUEE {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 50px;
}

main p {
  margin-left: 20px;
  margin-top: 15;
  text-align: left;                                                                    
}

main h2 {
  text-align: left;                                                                    
}
main ul li {
  text-align: left;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #180306;
  border-top: 2px solid #ffffff;
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

footer p {
  margin: 0;
  font-size: 14px;
}

video {
margin-top: 20px;

}

main a img {
  width: 400px;
  height: 266px;


}

.image_book_serie {
  
  width: 200px;
  height: 200px;
  border: 3px solid #ffffff;
  margin: 5%;
  border-radius: 50px;
}