body {
  background-color: #ddd;
  background-image: url("https://inflore.neocities.org/img/v2bg.png");
}
#wrapper {
  margin:auto;
  top:0;
}
#wrapper .home {
  height: 150px;
  width: 200px;
}
#footer {
  height: 50px;
  width:97%;
  z-index:1;
  text-align:center;
  position:absolute;
  bottom:5px;
}
#footer i {
  font-size: 16px;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 1);
  transition: all 0.3s ease-in-out;
}
#footer i:hover {
  font-size: 16px; text-align:center;
  transition: all 0.3s ease-in-out;
}
#footer button {
  border-radius: 100px;
  cursor: pointer;
  border: none;
  margin-bottom: 2px;
  width:40px;
  padding: 10px;
  background-color: #e1e1e1;
  transition: all 0.3s ease-in-out;
}
#footer button:hover {
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  background-color: #fff;margin-left:10px;margin-right:10px; width:80px;
}
#footer button:before {
  content: attr(data-hover);
  visibility: hidden;
  opacity: 0;
  width: 125px;
  background-color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 10px;
  position: absolute;
  margin-left:-55px;
  z-index:-1;
  top: 0px;
  transition: all 0.3s ease-in-out;
}
#footer button:hover:before {
  opacity: 1;
  visibility: visible;
  position: absolute;
  margin-left:-65px;
  top: -40px;
  z-index:-1;
  transition: all 0.3s ease-in-out;
}
#footer button:after {
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  height:10px;
  width:15px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left:-55px;
  top: 0px;
  transition: all 1s ease-in-out;
}
#footer button:hover:after {
  opacity: 1;  
  visibility: visible;
    position: absolute;
  margin-left:-25px;
  background-color:#fff;
  top: -10px;
  content: " ";
  transition: all 1s ease-in-out;
}
#container {
  margin: 75px auto;
  width: 1200px;
  height: 650px;
  background-color: #ecebf0;
  border: 1px solid #aeaeae;
  border-radius: 10px;
  padding: 40px;
  align-content:stretch;
  gap:20px;
  display: grid;
  grid-template-areas:
    "head head head"
    "pics desc friends"
    "pics pet colors";
  overflow:hidden;
}
#container .head {
  height: 100px;
  grid-area:head;
  border-radius: 20px;
  background-image:url('https://inflore.neocities.org/img/v2bg.png');
}
#container .blue {
  height: 250px;
  width: 380px;
  background-color: #9babb8;
  border-radius: 20px;
  box-shadow: 1px 1px 1px 0px #b7b7b9;
  overflow:auto;grid-area:friends;
}
#container .pics {
  height: 520px;
  grid-area: pics;
  width: 400px;
  background-color: #f4f4f4;
  border-radius: 20px;
  box-shadow: 1px 1px 1px 0px #b7b7b9;
  overflow:auto;
}
#container .desc {
  height: 250px;grid-area:desc;
  width: 380px;
  background-color: #f4f4f4;
  border-radius: 20px;
  box-shadow: 1px 1px 1px 0px #b7b7b9;
  overflow:auto;
}
#container .yellow {
  height: 250px;
  width: 380px;grid-area:pet;
  background-color: #eee3cb;
  border-radius: 20px;
  box-shadow: 1px 1px 1px 0px #b7b7b9;
  overflow:auto;
}
#container .small {
  width: 380px;
  height: 80px;
  grid-area:colors;
  align-self:center;
  background-color: #f4f4f4;
  border-radius: 20px;
  overflow:none;
}
