/* credits to the Blisspuzzle team for the CSS! */

html {
  background-image: url('/azulpuzzlebg.png'); 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-size: cover; 
  margin: 20px;
}

body {
  font: Tahoma;
  text-align: center;
  align-items: center;
  color: white;
  font-family: Arial;
  text-shadow: 1px 1px black;
}

#googlediv {
  background-color:rgba(0,0,0,0);
  width:60;
  position:absolute;
  border-radius:10px;
  padding:10px;
  margin-left: 50%;
  transform:translateX(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
} 


.azul-container {
 width: 300px;
 height: 180px;
 display: flex;
 justify-content: center;
 position: relative;
 margin-right: auto;
 margin-left: auto;
}

.azul-container img {
 width: 100%;
 height: 100%;
}

.top {
  filter: blur(0);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.top:hover {
  opacity: 1;
  transition: 0.2s ease-in-out;
}

a:link {
  color: white;  
}

a:visited {
  color: white; 
}

a:hover {
  color: yellow;
  transition: 0.2s ease-in-out;
}

.google {
  font-family: Arial; 
  color: black;
  box-shadow: 1px 1px 5px black; 
  background-color: #FFFFFF; 
  border-radius: 2px;
  position: absolute;
}

.clpy {
  color: gray;
}

