@font-face{font-family:iceland;font-style:normal;font-weight:400;src:local('Iceland'),local('Iceland-Regular'),url(iceland_font.woff) format('woff')}
html{
    height:100%;
}
body{
    height:100%;
    margin:0px;
    display: flex;
    background-color: #333;
    background: url(images/background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: iceland;
    font-size: 1.3em;
}
#container{
    margin: auto;
    padding: 0px 20px;
}
/*Panels*/
.Panel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 10px;
}
#Icons{
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}
/*Tiles*/
.tile{
    padding:10px;
    margin:10px;
    background-color:#E5E6E4;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
    transition: box-shadow 0.2s ease-in-out;
}
.tile:hover{
    box-shadow: 0px 0px 10px 2px #00D2FF;
}
.searchBar{
    display: flex;
    margin: 15px 0px;
}
.icon {
  text-align: center;
}
.icon a {
  text-decoration: none;
  color: #000;
}
.icon a:hover {
  color: #00D2FF;
}
/*Images in Icon Tiles*/
.icon a img{
  min-width:60px;
  min-height:60px;
  max-width:96px;
  max-height:60px;
}
.icon small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 60%;
}
/*Images in Search Tiles*/
.searchBar a img{
  width:64px;
  height:64px;
}
/*Search Bars*/
input{
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #00D2FF;
    margin: auto 10px;
    background-color: #FAFAFA;
    color: #231F20;
    width: 40px;
}
