* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(https://cupcakesthebulldog.neocities.org/homev3/home/quiltbg1.png);
    font-family: Caroni;
}

    @font-face {
    font-family: Caroni;
    src:url(https://cupcakesthebulldog.neocities.org/font/Caroni-Regular.otf);
    }
    
#mainarea{
    margin: 10vh 8vw;
    height: 600px;/*a enlever a la fin  */
    /* background-color: beige; */
    background-image: url(https://cupcakesthebulldog.neocities.org/homev3/home/vichyjaune.jpeg);
    background-position: center;
    background-size:auto ;
    border: solid 5px brown;
    border-radius: 10%;
}

#main_aside {
    display: flex;
    justify-self: center;
    width: 82vw;
}

header {
    background-image: url(https://cupcakesthebulldog.neocities.org/homev3/home/a9yzl4.gif);
    background-repeat: no-repeat;
    background-position: center;
    width: 82.5vw;
    height: 20vh;
    text-align: center;
    justify-self: center;
    align-content: center;
    border-bottom: 5px solid brown;
}

aside {
    width: 21vw;
    height: 51vh;
    text-align: center;
    padding: 5vh 1vw;
    border-right: 5px solid brown;
    overflow: scroll;
    overflow-x: hidden;
}

main {
    font-size: 20px;
    height: 51vh;
    width: 62vw;
    text-align: center;
    padding: 5vh 1vw;
    overflow: scroll;
    overflow-x: hidden;
}

nav {
    border: 2px solid maroon;
    background-color:cornsilk;
    padding: 1px;
    text-align: left;
    margin-bottom: 2vh;
}

main h1, p {
    padding-bottom: 2vh;
}

nav img {
    display: inline;
    height: 2vh;
}

li {
    list-style-type: none;
}

#miku {
    height: 35vh;
}

  .carousel-container {
    width: 80%;
    overflow: hidden;
  }
  .carousel {
    display: flex;
    animation: scroll 25s linear infinite;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-400%);
    }
  }