* {
    margin: 0; padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  }
  
  body {
    width: 100%;
    height: 100vh;
    background: #6983aa;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .center_div{
    width: 25%;
    height: 80vh;
    background-color: #f4f4f4;
    box-shadow: 5px 5px 25px -5px rgba(0,0,0,.5);
    border-radius: 30px;
    display: flex;
    
    align-items: center;
    flex-direction: column;
  }
  h1{
    margin-top: 50px;
    width: 100%;
    color: white;
    background-color: #8566aa;
    padding: 6px 0 6px 0;
    margin-bottom: 10px;
    box-shadow: 5px 5px 15px -5px rgba(0,0,0,.3);
  }

  .word-container{
    margin-top: 20px;
    background-color: white;
    border-radius: 30px; 
    box-shadow: 1px 4px pink; 
}

  .display-none{
    display: none; 
}

h2, p {
    text-align: center;  
    text-transform: uppercase; 
    color: black; 
    padding: 5px; 
    margin: 2px 5px; 
}
  
  
  button{
    
    margin-top: 20px;
    height: 40px;
    width: 60%;
    border-radius: 30px;
    border-color: transparent;
    background-color: #3329c0;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    border: none;
    outline: none;
   
    box-shadow: 5px 5px 15px -5px rgba(0,0,0,.3);
  }
  
  button:hover{
    background-color: #20bf6b;
  }
  
  
  @media (max-width : 768px) {
    .center_div{
      width: 55%;
    }
  h1{
      font-size: 20px;
  }
   
  
    button{
      margin-left: 5px;
      margin-top: 20px;
      height: 30px;
      width: 40%;
      color: #fff;
      font-size: 10px;
    }
  }
  