/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  

  body {
    background-color: rgb(235, 184, 137);
    color: rgb(245, 245, 245);
    font-family: Arial;
 }
     
.grid-container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto auto;
  background-color: transparent;
  
  
  /*padding-left: 640px;*/
  /*padding-right: 800px;*/
  /*padding-top: 250px;*/
  /*padding-bottom: 50px;*/
      
  }
    
.grid-item {
  background-color: white;
  border: 3px solid rgb(235, 184, 137);
  padding: 80px;
  font-size: 30px;
  text-align: center;
  border-radius: 15px;
  }
  
  .alcohol-button  {
    width: 50px;
    height: 100px;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 80px;
    color: #fff;
    opacity: 0;
    z-index: 1;
    border-radius: 15px;
  }
  
  .strikes {
    color: rgb(223, 93, 93);
    margin-top: 200px;
    width: 150px;
    height: 100px;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    font-size: 50px;  
    top: 30px;
    letter-spacing: 50px; 
    z-index: -1;
  }
  
  
  .alcimage {
    width: 100%;
    height: 100%;
    
  }
  
  
  .spotlight {
    pointer-events: none;
    z-index: 9;
    top: 0px;
    left:0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 79.3%, transparent 10px, black 97px);
    opacity: 0;
  }
  
  .curtainz {
    pointer-events: none;
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(6px);
    z-index: 9;
    opacity: 0;
    
  }
  
  
   .curtainz2 {
    pointer-events: none;
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 9;
    opacity: 0;
    
  }
  