.menu-actualites {
    color: var(--color2);
    text-decoration: underline;
    text-underline-offset: 30px;
  }

h1.zone-title {
  font-size: 35px;
  color: white;
  display: flex;
  width: 100%;
  justify-content: center;
  vertical-align: middle;
}

.zone-title img {
  margin: 0 1%;
  width: 40px;
  
}

.zone-title img:first-child {
  animation: moveIcon infinite 2s ease-in-out;
}

@keyframes moveIcon{
    0% {
      transform: rotate(10deg);
    }
    50% { transform: rotate(-10deg);
    }
    100% {
      transform: rotate(10deg);
    }
}

.zone-title img:nth-last-child(1) {
  animation: moveIcon2 infinite 2s ease-in-out;
}

@keyframes moveIcon2{
    0% {
      transform: rotate(-10deg);
    }
    50% { transform: rotate(10deg);
    }
    100% {
      transform: rotate(-10deg);
    }
}

.actu-container {
  margin: 80px auto;
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  animation: 2s spawn ease;
}

@keyframes spawn {
    from {
      opacity: 0;
      transform: scale(0);
     }
    to {
      opacity: 1;
      transform: scale(1);
    }
}

.tiktok-embed {
  margin: 0;
  border-radius: 5px;
  width: 500px;
}

.presse {
  background-color: rgba(255, 255, 255, 1);
  padding: 20px;
  border-radius: 5px;
  height: 475px;
}

.presse h2 {
  display: flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: 30px;
  margin-bottom: 20px;
}

.presse h2 img {
  width: 50px;
  margin-right: 10px;
}

.voix-du-nord {
  display: flex;
  align-items: center;
  margin: auto 0;
  border-radius: 5px;
}


.voix-du-nord a:first-child img {
  width: 280px;
  border: solid 4px rgb(53, 114, 228);
  border-radius: 10px;
  box-sizing: content-box;
}

.voix-du-nord a:not(a:first-child) img {
  width: 50px;
}

.voix-du-nord a  {
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.voix-du-nord a:first-child {
  z-index: 2;
}

.voix-du-nord a:first-child:hover {
  transform: scale(102%);
}

.voix-du-nord a:not(a:first-child) {
  background-color: rgba(2, 83, 233);
  height: 350px;
  
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: solid 4px rgb(53, 114, 228);
  border-left: none;
}

.voix-du-nord a:not(a:first-child):hover {
  background-color: rgb(74, 129, 230);
}

.voix-du-nord a:nth-child(2) {
  z-index: 1;
  padding: 0 20px 0 40px;
  transform: translateX(-20px);
}

.voix-du-nord a:nth-child(3) {
  z-index: 0;
  padding: 0 20px 0 40px;
  transform: translateX(-40px);
}

.voix-du-nord a:nth-child(2):hover {
  transform: translateX(-10px);
}

.voix-du-nord a:nth-child(3):hover {
  transform: translateX(-30px);
}

.fb-actu {
  border-radius: 5px;
}


@media screen and (max-width:1100px) {
  .menu-actualites {
      color: red;
      text-decoration: unset;
  }

  h1.zone-title {
    margin: 30px 0;
    font-size: 20px;
  }

  .zone-title img {
    margin: 0 2%;
    transform: translateY(10px);
    width: 28px;
}

  .actu-container {
    flex-direction: column;
    margin: 0;
    width: 100%;
    align-items: center;
  }

  .actu-container>* {
    margin-bottom: 30px;
  }

  .fb-actu {
  }
  .tiktok-embed {
    width: 100%;
  }
  .presse {
    width: auto;
    height: auto;
    padding: 20px;
  }

  .presse h2 {
    font-size: 20px;
    padding-bottom: 20px;
    margin: 0;
  }
  
  .presse h2 img {
    width: 40px;
    margin-right: 10px;
  }

  .voix-du-nord {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .voix-du-nord a:first-child img {
    width: 180px;
  }

  .voix-du-nord a:not(a:first-child) {
    background-color: rgba(2, 83, 233);
    height: 220px;
  }

  .voix-du-nord a:not(a:first-child) img {
    width: 30px;
  }

  .voix-du-nord a:nth-child(2) {
    z-index: 1;
    padding: 0 10px 0 15px;
    transform: translateX(-5px);
  }
  
  .voix-du-nord a:nth-child(3) {
    z-index: 0;
    padding: 0 10px 0 25px;
    transform: translateX(-20px);
  }
  
  .voix-du-nord a:nth-child(2):hover {
    transform: translateX(0px);
  }
  
  .voix-du-nord a:nth-child(3):hover {
    transform: translateX(-15px);
  }

}

