
.glow {
  font-size: 40px;
  color: white;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}
.glow2 {
  font-size: 60px;
  font-weight: bold;
  color: red;
  background: #000;
  text-align: center;
  animation: glow 2s ease-in-out infinite alternate;
}

.ahiosh-block-menup-logo
{
    border-left:2px solid white; box-shadow: 5px 10px 10px #ccc;
}
.ahiosh-block-logo
{
    width:30%;text-align:left;
}
.ahiosh-block-menup
{
    width:65%;
}
.ahiosh-pied
{
    width:100%;background-color:#ccc;border-top:5px solid black;
}
.ahiosh-pied-couleur-arriere1
{
    background-color:#666;
}
.ahiosh-pied-couleur-arriere2
{
    width:100%;background-color:#fff;border-top:5px solid black;
}
.ahiosh-pied-largeur-block
{
    width:25%;
    font-weight:bold;
    text-align:Left;
    font-size:14px; color:white;
}
.ahiosh-pied-largeur-block2
{
    width:20%;
    font-size:14px; color:white;
    height:70px;font-weight:bold;text-align:left;border-top:solid 2px white;border-bottom:solid 2px white;
}
.ahiosh-pied-largeur-block3
{
    font-size:14px; color:#000;
    font-weight:bold;
    padding:15px;
}
.ahiosh-text-gauche
{
    text-align: left;
}
.ahiosh-text-droit
{
    text-align: right;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px black, 0 0 20px black, 0 0 25px black, 0 0 30px black, 0 0 35px black;
  }
  
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px green, 0 0 30px green, 0 0 40px green, 0 0 50px green, 0 0 60px green, 0 0 65px green;
  }
}
.fa {
  padding: 8px;
  font-size: 24px;
  /*width: 20px;*/
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}
.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}
.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}
.image-container {
  /*background-image: url("images/Le-manioc-1000x516.jpg");
  background-size: cover;*/
  position: relative;
  height: 300px;
  
}
.text {
  background-color: white;
  color: blue;
  font-size: 3vw; 
  font-weight: bold;
  margin: 0 auto;
  padding: 10px;
  /*width: 90%;*/
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*mix-blend-mode: screen;*/
  box-shadow: 5px 10px 10px red;
}
.navbar {
  width: 100%;
  background-color: #fff;
  overflow: auto;
}
.navbar a {
  /*border-left:2px solid black;*/
  float: left;
  padding: 10px;
  color: black;
  text-decoration: none;
  font-size: 17px;
  font-weight:bold;
  
  text-align: center; /* If you want the text to be centered */
}
/* Add a background color on mouse-over */
.navbar a:hover {
  background-color: red;
  text-decoration: none;
  color: white;
}

/* Style the current/active link */
.navbar active {
  background-color: red;
  text-decoration: none;
  color: white;
}

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left; /* If you want the text to be left-aligned on small screens */
  }
}