/* General page style */ 

* { 
    margin: 20;   
    padding: 10;   
    font-family: 'Chicle', serif;  
    font-size: 48px;   
    font-weight: 400;   
    box-sizing: border-box; 
    text-decoration: none;   
    color:rgb(48, 159, 79);
    background-color: rgb(0, 0, 0);
    box-sizing:border-box;
  } 

 body {
  background-color: black;
  text-decoration: none; 
 }

  /* Comic Strip Slideshow Styling */

  .mySlides {
    
    display: block;


  border: 3px solid green;
  padding: 10px;
}

.slideshow-background {

  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
 
  padding: 20px; /* Optional: for some space around your slideshow */
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
}

  /* Position the "next button" to the right */
  .next, .prev {
    right: 0;
    border-radius: 3px 0 0 3px;
  }


  /* On hover, add a black background color with a little bit see-through */
  .prev:hover .next:hover {
    background-color: transparent;
  }

    /* Next & previous buttons */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      /* color: white; */
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background-color: transparent;
    }

    .prev {
      background-color: transparent;
      color:red;
      text-decoration: none;
        left: 0;
    }
    
    .next {
      background-color: transparent;
      color:red;
      text-decoration: none;
    }

    .round {
      border-radius: 50%;
    }


    /* styling for video clip */

     /* Container holding the Video Clip */
.container {
  display: flex;
  width: 50%;
  height: auto;
  padding: 10px;
  margin: 20px;
}

.container .video {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  @media screen and (min-width: 890px) {
    display: none;
    
}
  
}

/* Styling for the video */
.video {
  flex: 3;
}

/* Styling for the video's iframe, make sure to set the 'loop' attribute in your HTML */
.video iframe {
  min-width: 90px;
  padding-bottom: 20px;
}
  @media screen and (min-width: 890px) {
    display: none;
    
}



/* This sets up the flex container to fill the viewport height and horizontally lay out its children */
.container {
  display: flex;
  width: 80%;
  /* height: 100vh;  */
  /* Adjust the height as needed */
  /* align-items: stretch;  */
  /* This ensures that the flex children (.video and .images) fill the height */
  
}
  @media screen and (max-width: 890px) {
    .container {
      width: 100%;
    }
}

/* Ensures that the video fills its container */
/* controls video size on page */
video {
  width: 40%;
  height: auto;
  float: left;
 }

/* MARIJUANA LEAF IMAGE IN FOOTER TEXT */
/* .leaf {
  padding-bottom: 15px;
  max-width: 40px;
  img
} */

/

    .preview {


      
       display: flex;
      justify-content: center;
      align-items: center;
      height: auto;   
      margin: 20px  20px 20px 20px;
      display: flex;
      display: block;
    } 
    .preview img {
      max-width: 100%;
      height: auto;
      text-align: center;
      

    }

    /* menu-component {
      display: flex;
      justify-content: right;
      background-color: black;
      padding: 10px;
      font-size: .5em;
      margin-bottom: 20px;
    } */

    .banner {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
      padding-bottom: 30px;
    }

    H3 {
      padding: 20px 20px 20px 20px;
    }

    H2 {
      padding: 10px 10px 10px 10px;  
    }

    .privacy {
      padding: 0px 10px 10px 30px;  
    }

      h1 {
          padding: 10px 10px 10px 10px;  
        }
 
 
        .slogan {
          text-align: center;
        }

        
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* Ensure items align at the top */
  text-align: center;
  max-width: 1200px; /* Set a maximum width */
  margin: 20px auto; /* Center the container */
}

.img {
  margin: 20px;
  flex: 1 1 calc(50% - 40px); /* Adjust for two items per row with margin */
  box-sizing: border-box;
  max-width: 600px; /* Ensure a maximum width */
  
}

.gameImage {
  margin: 20px;
  flex: 1 1 calc(50% - 40px); /* Adjust for two items per row with margin */
  box-sizing: border-box;
  max-width: 600px; /* Ensure a maximum width */
}

a {
  text-decoration: none;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
 border: 4px solid #000000;
  /* Green border */
  border-radius: 10px; /* Optional: Rounded corners */
  margin-bottom: 10px;
}

 

h1, p {
  margin: 10px 0;
  text-align: center;
  

}

p {
  font-size: 28px; /* Small default text */
}

@media (max-width: 768px) {
  .game {
      flex: 1 1 100%; /* Stack items on smaller screens */
      max-width: none;
  }
}

@media (min-width: 769px) {
  .game {
      flex: 1 1 calc(50% - 40px); /* Two items per row on larger screens */
  }
}