html {
    height: 100%;
}
a {
    cursor:default;
}
body {
    height: 100%;
    margin: 0px;
    display: flex;
    background-color: #000000;
    background-image: url(images/black-forest-wallpaper-Clqad3A.jpg);
    background-repeat: no-repeat
    background-position: center;
    /*filter:blur(5px);*/

}
#container {
    margin: auto;
    padding: 0px 20px;
}
/*Panels*/
.Panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1040px;
    /* margin-top: -50px; */
}
#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;
        filter:opacity(80%);
        
}
.tile:focus, .tile:hover {
    box-shadow: 0px 0px 10px 3px #00d2ff;
    filter:opacity(99%);
}

a:hover + .tile {
    filter: blur(10px);
    -webkit-filter: blur(10px);
     background-color: #e5e6e4;
}

.searchBar {
    display: flex;
    margin: 15px 0px;
}
/*Images in Icon Tiles*/
.icon img {
    width: 128px;
    height: 128px;
}

/*Images in Icon Tiles*/
/*
body:hover {
    background:red;
      filter: blur(3px);
  -webkit-filter: blur(3px);
}


.tile:hover {
    background:rgb(200,200,200);
      filter: blur(0px);
  -webkit-filter: blur(0px);
}
*/

/*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;
}

.wrapper-promo {
    display: block;
    border: 0px;
    text-decoration: none;
}

.wrapper-promo:focus, .wrapper-promo:hover {
    box-shadow: 0px 0px 10px 3px #00d2ff;
    /*background:rgb(35,35,35);*/
}

.tile, .wrapper-promo {
    border-radius:.5em;
}
