@font-face {
    font-family: "Buft";
    src: url("../Assets/Melted_Monster/Melted\ Monster.ttf");
}

@font-face {
    font-family: "Poule";
    src: url("../Assets/Holiday_Cheer/Holiday\ Cheer.otf");
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

h1, h2 {
    font-family: "Buft";
    color: red;
    
}

p {
    color: rgb(84, 150, 250);
    font-family: "Poule";
}

header {
    
    position: fixed;
    height: 30vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 7vh;
    background-color: black;
    background-image: url("../Assets/Logo/Logo_Umbrella.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    border-radius: 155.5px;
    z-index: 10;
   
}

nav>a {
    text-decoration: none;
    display: block;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90vw;
    border: red solid;
    background-color: red;
}

body {
    background-color: red;
    
}

.Bouton {
    color: white;
    font-family: "Poule";
}

.Bouton:hover {
    background-color: white;
    color: red;
}

* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 300px;
  position: relative;
  margin: auto;
  top: 30vh;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 10%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(0, 140, 255);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: blue;
}

/* Caption text */
.text {
  color: rgb(153, 0, 255);
  font-size: 15px;
  font-weight: bold;
  padding: 8px 12px;
  position: relative;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.text:hover{
    background-color: black;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
  width: 80vw;
  position: relative;
  left : -30vw;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


.Personnage {
  position: relative;
  background-color: black;
  width: 20vw;
  display: flex;
  flex-direction: row;
  align-items: center;

  
}

.Describe {
  color: white;
  padding: 30px;
  font-size: 25px;

}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80vw;

}

.Apparition {
  color: red;
  font-size: 2vw;
  text-decoration: underline;
  margin: 2vw;
}