html {
  min-height: 100%;
  background: no-repeat;
}


body {
    min-height: 100%;
    background-size: cover;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: rgb(16, 162, 230);
    background: -moz-linear-gradient(0deg, rgba(255,86,1,1) 0%, rgba(254,255,122,1) 100%, rgba(11,141,167,1) 95%) no-repeat;
    background: -webkit-linear-gradient(0deg, rgba(255,86,1,1) 0%, rgba(254,255,122,1) 100%, rgba(11,141,167,1) 95%) no-repeat;
    background: linear-gradient(0deg, rgba(255,86,1,1) 0%, rgba(254,255,122,1) 35%, rgba(11,141,167,1) 95%) no-repeat;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff5601",endColorstr="#0b8da7",GradientType=1);
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 1.25em;
}

h1 {
    text-align: center;
    color: rgba(255,255,255,.8);
    margin: 10px;
}

h2 {
  padding: 0% 10% 0% 10%;
  color: rgb(79,81,82);
  font-size: .75em;
  font-style: italic;
  text-align: center;
  margin: 0;
}

h3 {
  color: rgb(79,81,82);
  text-align: center;
}


/**Menu Style **/

ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(38,44,49,.3);
    text-align: center;
    
  
    
}

li {
    float: none;
    display: inline;
    font-size:.8em;
  }
  
  li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(38,44,49,.7);
  }
  
  li.dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(38,44,49,.5);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {background-color: rgba(38,44,49,.5);}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }


  /** end menu style **/


  .card-dewey {
    height: 180px;
    width: 180px;
    background-image: url("/media/dewey.webp");
    background-size: cover;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
    border-radius: 10px;
    margin: 5%;
    
  }

  .card-dewey:hover{
    transform: scale(1.5);
    
  }

  .card-deweymask {
    height: 180px;
    width: 180px;
    background-image: url("/media/deweymask.webp");
    background-size: cover;
    filter: url(#turbulence);
    border-radius: 10px;
    
    
  }




  .footer {
    position: static;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(38,44,49,.3);
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration:none;
  }

  a.contact {
    color: white;
  }


  .maincontent{
    min-height: 100vh;
  }


  .flex-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0% 5% 0% 5%;
  }

  .flex-container > div {
    background-color: rgba(169, 213, 250, 0.2) ;
    width: 40%;
    border-radius: 30px;
    padding: 20px;
    margin: 20px;
  }