body {
  background-color: #000000;
}
a {
  text-decoration: none;
  }
#background-video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -9;
}
	  

.box {
  height: 500px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  opacity: 0.8;
  margin-bottom: 20px;
  color: white;
  overflow: hidden;  
  box-shadow: inset 0 0 10px 10px #000000;
}

@media screen and (max-width: 768px) {
    .box {
      width: 100%;
    }
}


@media screen and (min-width: 800px) {
   .box:hover{
    transform: scale(1.1);
    border-radius: 15px;
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
}
}
 
.bouton {
  display: inline-block;
  background-color: #6441a5;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.bouton:hover {
  background-color: #000005;
}
.bouton a {
  color: #fff;
  text-decoration: none;
}


#coin-display {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: #FFD700;
  width: 100%;
  height: 30px;
  margin-right: 10px;
  border-color: black;
  border-style: solid;
  border-width: 1px;
}
#coin-display i {
  font-size: 1.2rem;
  margin-right: 5px;
  margin-left: 10px;
}


#pseudo-display {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: #6441a5;
  width: 100%;
  height: 30px;
  margin-right: 10px;
  border-color: black;
  border-style: solid;
  border-width: 1px;
  color: #ffffff;
}
#pseudo-display i {
  font-size: 1.2rem;
  margin-right: 5px;
  margin-left: 10px;
}
#pseudo-display span {
  font-size: 1.2rem;
  font-weight: bold;
}

.cadre {

      height: 90%;
      
      padding: 1%;

      position: relative;

      z-index: 1;

	  width: 100%;

	  background-color: #000000;

	  opacity: 0.8;
	  
	  color: #ffffff;

	  overflow: auto; /* Permet le défilement */

  border-width: 2px;

  border-style: solid;

  border-image: linear-gradient(90deg, #3B1B5F, #140B3B) 1;

  animation: twitch-border 5s linear infinite;

}



@keyframes twitch-border {

  0% {

    border-image: linear-gradient(90deg, #3B1B5F, #140B3B) 1;

  }

  50% {

    border-image: linear-gradient(90deg, #7F3EBE, #FF3B4F) 1;

  }

  100% {

    border-image: linear-gradient(90deg, #3B1B5F, #140B3B) 1;

  }

}

.threeD {
  color: #ffffff;
  font-family: sans-serif;
  transition: 0.3s;
  text-shadow: 1px 1px 0 grey, 1px 2px 0 grey, 1px 3px 0 grey, 1px 4px 0 grey,
    1px 5px 0 grey, 1px 6px 0 grey, 1px 7px 0 grey, 1px 8px 0 grey,
    5px 13px 15px black;
}

.threeD:hover {
  transition: 0.3s;
  transform: scale(1.05);
  text-shadow: 1px -1px 0 grey, 1px -2px 0 grey, 1px -3px 0 grey,
    1px -4px 0 grey, 1px -5px 0 grey, 1px -6px 0 grey, 1px -7px 0 grey,
    1px -8px 0 grey, 5px -13px 15px black, 5px -13px 25px #808080;
}
