
body {
    margin: 0;
    background: black;
    text-align: center;
    font-family: sans-serif;
    color: #fefefe;
  }
  .container_125 {
    position: relative;
    width: 200px;
    margin: 100px auto 0 auto;
    perspective: 1500px;
  }
  
  .carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; 
    animation: rotate360 60s infinite forwards linear;
  }
  .carousel__face_125 { 
    position: absolute;
    width: 125px;
    height: 125px;
    top: 20px;
    left: 10px;
    right: 10px;
    background-size: cover;
    box-shadow:inset 0 0 0 800px rgba(0, 0, 0, 0);
    display: flex;
  }
  
  span {
    margin: auto;
    font-size: 2rem;
  }
  
  
  .carousel__face_125:nth-child(1) {
    background-image: url("https://new.thc-comp.com/img/reserves/Whitehart_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY(  0deg) translateZ(430px); }
  .carousel__face_125:nth-child(2) { 
    background-image: url("https://new.thc-comp.com/img/reserves/Lp_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
      transform: rotateY( 30deg) translateZ(430px); }
  .carousel__face_125:nth-child(3) {
    background-image: url("https://new.thc-comp.com/img/reserves/Settler_Creeks_EW_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY( 60deg) translateZ(430px); }
  .carousel__face_125:nth-child(4) {
    background-image: url("https://new.thc-comp.com/img/reserves/RFF_icon2.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY(90deg) translateZ(430px); }
  .carousel__face_125:nth-child(5) { 
    background-image: url("https://new.thc-comp.com/img/reserves/Hirschfelden_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
   transform: rotateY(120deg) translateZ(430px); }
  .carousel__face_125:nth-child(6) { 
    background-image: url("https://new.thc-comp.com/img/reserves/Hemmeldal_Icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
   transform: rotateY(150deg) translateZ(430px); }
  .carousel__face_125:nth-child(7) { 
    background-image: url("https://new.thc-comp.com/img/reserves/Rougarou_Icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
   transform: rotateY(180deg) translateZ(430px); }
  .carousel__face_125:nth-child(8) {
    background-image: url("https://new.thc-comp.com/img/reserves/Val-des-bois_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY(210deg) translateZ(430px); }
  .carousel__face_125:nth-child(9) {
    background-image: url("https://new.thc-comp.com/img/reserves/Bushrangers_run_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY(240deg) translateZ(430px); }
  .carousel__face_125:nth-child(10) { 
    background-image: url("https://new.thc-comp.com/img/reserves/WR_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
   transform: rotateY(270deg) translateZ(430px); }
  .carousel__face_125:nth-child(11) {
    background-image: url("https://new.thc-comp.com/img/reserves/TT_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY(300deg) translateZ(430px); }
  .carousel__face_125:nth-child(12) {
    background-image: url("https://new.thc-comp.com/img/reserves/PB_icon.png?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    transform: rotateY(330deg) translateZ(430px); }
  
  
  
  @keyframes rotate360 {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(-360deg);
    }
  }