html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/*
div {
  outline: 1px solid #0037FF;;
}
*/
@font-face {
  font-family: "Bagerich";
  src: url("font/Bagerich.woff") format("woff"),
    url("font/Bagerich.ttf") format("truetype");
}

h1 {
  font-family: Bagerich;
  font-style: normal;
  font-weight: normal;
  font-size: 120px;
  line-height: 120px;
  color: white;
  padding-top: 20vh;
  text-align: center;
  animation-name: fadeIn;
  animation-duration: 7s;
  transition-timing-function: ease-in-out;
}

h2 {
  font-family: Bagerich;
  font-style: normal;
  font-weight: normal;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 10px;
  color: black;
  /*-webkit-text-stroke: 1px black;*/
  padding-top: 20vh;
  text-align: center;
}

h3 {
  color: white;
  padding-top: 5vh;
  text-align: center;
}

/***************************************************************/
/* logo */
.logo img {
  width: 250px;
  height: 100%;
  margin: 25px;
  display: block;
}

/*header */
header {
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 100;
  position: fixed;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: nowrap;
}

.wrap-left {
  width: 30%;
}

.wrap-right {
  width: 70%;
}

.box-menu {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.cubesolo-menu {
  border: 2px solid #fff;
  background-color: black;
  color: white;
  width: 10vw;
  height: 10vw;
  margin: 25px;
  padding: 0 20px;
  text-decoration: none;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cubesolo-menu:hover {
  border: 2px solid black;
  background-color: #fff;
  color: black;
}

/***************************************************************/
section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

#top {
  background-color: black;
  background-image: url(res/background.gif);
  background-position: center center;
  background-image: brightness(50%);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.boxart-img, .boxart-text {
  width: 50%;
}

.boxart-img {
  background-position: center center;
  background-size: cover;
  filter: invert(0);
  -webkit-filter: invert(0);
}

.boxart-img:hover {
  filter: invert(1);
  -webkit-filter: invert(1);
}

.boxart-text {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxart-text p {
  padding: 30px;
  line-height: 25px;
}

.icon {
  width: 50px;
  margin: 0 auto;
  text-align: center;
}

.icon img:hover {
  transition: ease-in-out;
  animation-duration: 2s;
  animation-name: scalePlus;
}

@keyframes scalePlus {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.3) rotate(45deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/***************************************************************/
#artiste1 .boxart-img {
  background-image: url(res/img_1.jpg);
}

#artiste1 .boxart-text {
  background-color: yellow;
}

/***************************************************************/
#artiste2 .boxart-img {
  background-image: url(res/img_2.jpg);
}

#artiste2 .boxart-text {
  background-color: yellow;
}

/***************************************************************/
#artiste3 .boxart-img {
  background-image: url(res/img_3.jpg);
}

#artiste3 .boxart-text {
  background-color: yellow;
}

/***************************************************************/
#artiste4 .boxart-img {
  background-image: url(res/img_5.jpg);
}

#artiste4 .boxart-text {
  background-color: yellow;
}

/***************************************************************/
#artiste5 .boxart-img {
  background-image: url(res/img_4.jpg);
}

#artiste5 .boxart-text {
  background-color: yellow;
}

/***************************************************************/
/*
.textUp{
  z-index: 80;
}*/
/***************************************************************/
