body {
    background-color: #000000;
}

.thumbImage{
    border:7px solid rgba(255, 255, 255, 0.508);
    margin: 12px;
}

.outerContainer{
    max-width: 1800px;
    margin: auto;
    background-image: url(../images/glow_bg4.png);
    background-position: center;
    background-repeat: repeat-y;
    animation: pulse 10s infinite;
    background-color: #4a0b0b;
}

.mainContainer{
    max-width: 1800px;
    margin: auto;
    background-image: url(../images/racs_bg_loop2.svg);
    background-size: 70px;
    background-position: 50%;
   /* border: 3px solid #73AD21; */
}

#headerDiv {
    position: relative; 
    background-image: url(../images/header.png);
    background-position: center;
    height: 171px;
    text-align: right;
    z-index: 5;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1800px;
}

#footerDiv {
    background-image: url(../images/footer.png);
    background-position: center;
    height: 92px;
}

#imagesContainer {
    text-align: center;
}

#contactDiv{
    background-image: url(../images/racs_bg_loop2.svg);
    background-size: 70px;
    background-color: #111111;
    background-position: 50%;
    font-size: 21px;
    text-align: center;
    display: flex;
    flex-direction: row ;
    justify-content : center;
    align-items: center;
    margin-bottom: 50px;
}

#contactText{
    color: #eceaea;
    font-size: 23px;
    padding:140px 30px;
    width: 476px;
    height: 400px;
    text-align: left;
}

* {
    font-family: "Barlow", sans-serif;
}

.categoryImage{
   margin-top: 13px;
   margin-bottom: 13px; 
  /* width: 100%; */

   display: block;
   margin-left: auto;
   margin-right: auto;
 /*  width: 50%;*/
}
.categoryImageDiv{
    /* background-color: #111111; */
    margin-top: 13px;
    margin-bottom: 13px; 
     background-image: url(../images/slogan.svg);
     background-position: center;
     height: 152px;
 }



#menuDiv {
    display: none;
    font-size: 10px;
}

.menuPoint {
    color: #ebe4e4;
    margin: 12px;
    text-decoration: none;
    font-size: 20px;
}

.contactRed{
    color: red;
}

/* css as usual */
.this-class {
    font-size: 12px;
}

#menuButton {
    display: block;
    width: 50px;
    height: 50px;
    padding: 1px;
    margin:10px;
    float: right;
}

#contentDiv1 {
    background-image: url(../images/racs_bg_loop2.svg);
    background-size: 70px;
    background-color: #111111;
    background-position: 50%;
    font-size: 21px;
    position: relative;
    top: -15px;
    /* height: 200px; */
    /* animation: pulse 10s infinite; */
}

@keyframes pulse {
    0%,
    100% {
        background-size: 1200px;
    }
    50% {
        background-size: 2300px;
    }
}

#mainTextDiv {
    margin: auto;
    max-width: 870px;
    padding: 10px;
 /*   height: 200px; */
    color: rgb(231, 223, 223);
    padding-top: 20px;
    padding-bottom: 50px;
}

#contactImages{
    display: none;
}

.sloganDiv{
    /* background-color: #111111; */
     background-image: url(../images/slogan_small.svg);
     background-size: 400px; 
     background-repeat: no-repeat;
     background-position: center;
     height: 154px;
     text-align: center;
     position: relative;
     top: -15px;
     z-index: 0;
 }

/* condition for screen size minimum of 500px */
@media (min-width: 700px) {
    /* your conditional / responsive CSS inside this condition */

    .this-class {
        font-size: 20px;
    }
    #menuButton {
        display: none;
    }
    #menuDiv {
        padding: 7px;
        display: block;
    }

    #contactImages{
        display: block;
    }

    .sloganDiv{
        /* background-color: #111111; */
         background-image: url(../images/slogan.svg);
         background-size: 2000px; 
         background-position: center;
         height: 154px;
         text-align: center;
         position: relative;
         top: -15px;
         z-index: 0;
     }
}


/*dropdown menu*/
.dropbtn {
  /*  background-color: #04AA6D; */
    color: #ebe4e4;
    padding: 10px;
    font-size: 20px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.673);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: center;
  }
  
  .dropdown-content a {
    font-size: 18px;
    color: black;
    padding: 4px 4px;
    text-decoration: none;
    display: block;
  }

  .blackButton{
    background-color: #111111;
    color: white;
    padding: 10px;
    font-size: 18px;
    border: none;
    display: inline;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  /*
  .dropdown:hover .dropbtn {background-color: #505150;}
*/

#mobileMenu{
    z-index: 5;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #eceaea;
    display: none;
    text-align: center;
    font-size: 22px;
   
}

#mobileMenu a{
    text-decoration: none;
    color: #111111;
}
