
/*Background photo settings and style */
body {
    margin: 0px;
    background-image: url(MuncheezBackgroundTransparent1.png);
    background-color: rgba(255, 255, 255, 0.608);
    
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/*Hyperlink style*/

a {
    color: red;
}

a:hover{
    color:rgb(174, 0, 0);
}



/*Main website margins */
main{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

/*IMAGE SLIDESHOW STYLES*/

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position:relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}






/*Heading font style */ 
h1 {
    text-align: center;
    color: red;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    font-size: 400%;

}

h3 {
    text-align: center;
    color: red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    font-size: 250%;
}

h4 {
    text-align: center;
    color: black;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: larger;
    padding: 10px;
}
h5 {
    text-align: center;
    color: red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: x-large;
}

h6 {
        display: inline-block;
        font-size: larger;
        text-align: center;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: red;
        margin-top: 0%;
        padding: 15px
    
}
    


h2 {
    text-align: center;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
}


/*Paragraph font style */
p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
}

/*Bold font style */
b {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
}




/*Images style */
img {
    border-radius: 5%;
    width: 80%;
    }



    /*Navigation Bar Style*/
.navbar ul{
    list-style-type: none;
    background-color: rgb(245, 2, 2);
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}
.navbar a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.navbar a:hover {
    background-color: rgb(203, 2, 2);
}
.navbar li{
    float: left;
}

/*About-Us/Our Team style*/
.column {
  float: left;
  width: 50%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}
.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
}

.container {
  padding: 0 16px;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}



/* Menu stlye */
* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .menu {
    font-family: sans-serif;
    font-size: 10px;
  }
  
  .menu-group-heading {
    margin: 0;
    font-size: x-large;
    color: black;
    padding-bottom: 1em;
    border-bottom: 2px solid black;
  }
  
  .menu-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5em;
    padding: 2em 0;
  }
  
  .menu-item {
    display: flex;
  }
  
  

  .menu-item-text {
    flex-grow: 1;
  }
  
  .menu-item-heading {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  
  .menu-item-name {
    margin-right: 1.5em;
  }
  
  .menu-item-desc {
    line-height: 1.6;
  }
  @media screen and (min-width: 992px) {
    .menu {
      font-size: 12px;
    }
    .menu-group {
      grid-template-columns: repeat(2, 1fr);
    }
  }




  

