
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  html, body {
    scroll-behavior: smooth;
      height: 100%;
      font-family: 'Montserrat', sans-serif;  
      color: #97999C;   
    }  
   


     /* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  ::-webkit-scrollbar-thumb {
    background: #fff;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #fff;
  }

  /*header*/
header{
    text-align: center;
    margin: 20px;
}
/* Word Search playfield-container */
.wordSearch {
    height: 100vh;
    color: #fff; 
  }
  .wordSearch h4,
  .wordSearch p{
    text-align: justify;
    word-wrap: break-word;
    margin: 40px;
  }
  .wordSearch p{
  font-family: 'Quicksand', sans-serif; 
  font-weight: 300;  
  font-size: 14px;
 
  }

  /* Grid*/
  .playfield-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .game {
      background-color: #6566ae;
      padding: 20px;
      align-items: center;
    /* grid-column: 1 / 3;
    grid-row: 1; */
  }
  .words {
      background-color: #F59899;
      padding: 20px;
  }
  .story {
      background-color: #34bc93;
      
  }

.wordSearch button{ 
    color: #070707a4;
    font-weight: 600;
    background-color: #fff;
    border: 2px solid #6566ae;
    width: 35px;
    height: 35px;
    border-radius: 6px;  
    text-align: center;
    cursor:pointer; 
    transition: all 0.3s ease; 
} 
.reset.btn {
   border-color: #F59899;
   padding: 8px;
   background-color: hsl(359, 79%, 87%)  ;
   border-radius: 6px;
   color: #fff;
   transition: all 0.3s ease; 
}



/* Footer */
footer {
    font-size: 12px;
    color: #97999C;
    position:sticky;
    text-align: right;
    bottom: 0px;
    padding: 0 15px 15px 0;
  }
  footer a{
    font-weight: 600;
    color: #34bc93;
  }

/*font-family:
   'Montserrat', sans-serif;
    'Quicksand', sans-serif;
*/
/* colors: 
    Blue-ish    #34BC93 
    Purple-ish  #6566AE    
    Pink-ish    #F59899 
    Gray       #97999C
*/
