

body {
  background-image: url('wallpaper.jpg');
  min-height: 100vh;
  position: relative;
  margin: 0;
  overflow:hidden;
}

.icon {
  width: 80px;
  text-align: center;
  position: absolute; /* So you can place them anywhere */
  cursor: pointer;
}

.icon a {
  display: inline-block;
  padding: 7px;
  transition: all 0.1s ease;
  border: 2px solid transparent;
}
.icon a:hover {
  border: 2px solid #D0F0C0;
  border-radius: 8px;
  background-color: rgba(0, 128, 128, 0.3);
}

.icon img {
  width: 64px;
  height: 64px;
}

.icon p {
  margin: 5px 0 0;
  color: white;
  font-family: sans-serif;
  font-size: 14px;
}

img { 
  max-width: 100% 
}

.footer {
  text-align: center;
  padding: 20px;
  height: 1px;
  background-color: #abbc54;
  position: absolute;
  bottom: 0;
  width: 100%;
}

