/* Chapter section */


.TutorialHover:hover, .TutorialHover:visited, .TutorialHover:link, .TutorialHover:active {

    text-decoration: none!;
  
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
  }
  
  .box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin: 20px 0;
    padding: 10px;
    width: 100%; 
    min-height: 50px;
    color:black;  
  }
  
  /* effects for subjects cards */
  .box {
          box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
          transition: all .2s ease-in-out;
      }	
  
  .box:hover {
          box-shadow: 0 1px 31px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
          transition: all .2s ease-in-out;
      }

  h5{
    font-weight: bolder;
    text-align: center;
  }