@import url('https://fonts.googleapis.com/css?family=Poppins');
body, html{
  margin: 0px;
  min-height: 100vh;
  background: #F7F7F7;
  font-family: 'Poppins', sans-serif;
  display:flex; 
  flex-direction:column;
}

h1{
  text-align: center;
  color:#000;
  margin-top: 2vh;
  margin-bottom: 0px;
}


.span-centered{
  width: fit-content;
  height: 30%;
  line-height: 3vh;
  margin:3px auto;
  display: flex;
  font-size: 1rem;
}

.container-all{
  width: fit-content;
  height: auto;
  margin:3px auto;
  padding : 50px;
  flex:1
}
.container{
  width: calc(20% - 6px);
  overflow:hidden;
  height: fit-content;
  margin:3px;
  padding: 0;
  display:block;
  position:relative;
  float:left;
  background: #FFED00;
  flex-shrink: 0;
  
}
.container img{
  width: 100%;
  transition-duration: .3s;
  max-width: 100%;
  opacity: .9999;
  cursor:pointer;
}
.title{
  position:absolute;
  display:block;
  cursor:pointer;
  top: 35%;
  display: none;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  font-size: 1.6em;
  transition-duration: .3s;
}
.text{
  position:absolute;
  top: 70%;
  cursor:pointer;
  max-width: 80%;
  text-align:center;
  left: 50%;
  font-size: 1em;
  display:none;
  margin-right: -50%;
  transition-duration: .3s;
  transform: translate(-50%, -50%) 
}
.container:hover img{
  transform: scale(1.2);
  transition-duration: .3s;
  filter: grayscale(50%);
  opacity: .05;
}

.container:hover{
  background: #7A7A7A;
}

.container:hover .title{
  color:#FFF;
  display: block;
  transition-duration: .3s;
}

.container:hover .text{
  color:#000;
  display: block;
  transition-duration: .3s;
  background: #FFED00;
  padding: 20px;
}

@media only screen and (max-width: 900px) {
	    .container {
        width: calc(50% - 6px);
    }
}
@media only screen and (max-width: 400px) {
    .container {
        width: 100%;
    }
}

.header {
    width:100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
	  min-height:100px;
    flex-direction: column;
    display: fl;
}

.header-logo {
  width: 100%;
  height: 70%;
  justify-content: center;
  display: flex;
}

img.logo{
    max-width:10vw;
    max-width:10vh;
    vertical-align: middle;    
    cursor: pointer;
}

.footer
{
	background : #242424;
	min-height:100px;
	text-align: center;
	padding-bottom:20px;
  flex-direction: row;
  display: flex;

  .footer-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  } 

  .footer-right {
    width: 50%;
    margin-left: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    .spacer {
      width : 10%
    }
    .oneraw-left {
      width: 35%;
      display: flex;
      flex-direction: column;
      justify-content: left;
    }
    .oneraw-right {
      width: 35%;
      display: flex;
      flex-direction: column;
      justify-content: right;
    }
  } 

}


.footer h2
{
	color:#FFF;
	cursor:pointer;
	text-decoration-color: #FFF;
  font-size: 1em;
}

.footer a
{
	color:#FFF;
	cursor:pointer;
	text-decoration: none;
  margin-bottom: 1vh;
}

.footer img
{
	max-height : 50px;
}

/*Mobile style overrides */
@media only screen and (max-width: 600px) {
  .footer h2 {
    font-size: 0.5em;
  }

  .footer img {
    max-height: 25px;
  }
}


