/* 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:#121212;
  display: flex;
  align-items: center;
  justify-content: center;
  /*color: red;*/
  font-family: Verdana;
  padding: 20%;
  margin: 0;
}


  
/*.container {*/
/*    width: 800px;*/
/*    height: 800px;*/
/*    margin: 100px auto;*/
/*    padding: 20px;*/
/*    background: black;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    border-radius: 50px;*/
  
/*}*/
.grid-container {
    display: grid;
    grid-template-columns: 150px 200px 200px 150px;
    grid-template-rows: 150px 200px 200px 150px;
    gap: 1em;
    /*background: red;*/
    grid-template-areas: "box-8 box-8 box-8 box-8"
                         "box-1 box-2 box-2 box-3"
                         "box-1 box-4 box-4 box-5"
                         "box-1 box-4 box-4 box-5"
                         "box-6 box-7 box-7 box-7";
    /*position: relative;*/
    /*text-align: center;*/
    /*border-radius: 50px;*/
  
}

.box {
  background-color: black;
  
  }
#intro {
    margin: 0 auto;
    padding: 10px;
    background: darkred;
    text-align: center;
    border-radius: 25px;

}
/*.nav ul {*/
/*  list-style-type: none;*/
/*  margin: 10px;*/
/*  padding: 10px;*/
/*  overflow: hidden;*/
/*  background-color: darkred;*/
/*  border-radius: 100px;*/
/*}*/

/*li {*/
/*  display: inline-block;*/
/*  padding: 10px;*/
/*}*/

/*li a {*/
/*  color: white;*/
/*  text-align: center;*/
/*  padding: 16px;*/
/*  text-decoration: none;*/
/*}*/
/*li a:hover {*/
/*  background-color: white;*/
/*  color: red;*/
  
/*}*/


#twodArt {
  width:100%;
  height:100%;
  display:block;
      border-radius: 25px;
  
/*   width: 400px;*/
    /*height: 300px;*/
/*    margin: 10px auto;*/
/*    padding: 10px;*/
/*    background: darkred;*/
/*    text-align: center;*/
/*    border-radius: 25px;*/
}

#threedArt {
  width:100%;
  height:100%;
  display: block;
    border-radius: 25px;
/*  background-color: red;*/
/*  text-align: left;*/
/*  height: 550px;*/
/*  padding: 50px;*/
/*  margin: 20px;*/
/*  border-radius: 25px;*/
}

#Blog {
  width: 100%;
  height: 100%;
  display: block;
      border-radius: 25px;
  
}

#Game {
  width: 100%;
  height: 100%;
  display: block;
      border-radius: 25px;
  
}

#wheresWaldo {
  
  width: 100%;
  height: 100%;
  display: block;
      border-radius: 25px;
  
}

#secret {
  width: 100%;
  height: 100%;
  display: block;
      border-radius: 25px;
  
  
}

#title {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 25px;
  align-items: center;
  background-color: red;
  padding: 0;
  margin: 0 auto;
  
  }

.modal-container {
  
 background-color: pink; 
 position: absolute;
 opacity:0;
 margin: 0 auto;
 width:400px;
 height: 400px;
 transition: opacity 0.3s ease-in-out;
 pointer-events: none;
 align-items: center;
 justify-content: center;
 cursor: grab;
 resize: both;
 overflow:auto;
}

.modal-container.show {
  opacity: 1;

  pointer-events: auto;
  /*z-index: 999;*/
  
  
}


.modal {
  margin: 0 auto;
  background-color:purple;
  position: relative;
  padding: 30px;
  width: 300px;
  height: 300px;
  
}

#header {
  background-color:pink;
  padding:15px;
  height: 25px;
  
  }
  
#close {
  float:right; 
  width: 10%;
  height:100%;
  text-align: center;
  justify-content: center;
  
}


/*#left {*/
/*  position: relative;*/
/*  text-align: left;*/
/*  width:20%;*/
/*  float: left;*/
  
  
  
/*}*/

/*#right {*/
/*  position:relative;*/
/*  width: 20%;*/
/*  float: right;*/
  
/*  }*/




  
  
  
  
  
  
  
  
  