
body {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 90vh;
  padding-top: 10vh;
  background-color:aliceblue;
}

#housediv {
  width: 100%;
  position: relative;
}

#house {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: 4em;
  
}

.emotion-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 10vw;
  height: auto;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.emotion-image:hover {
  opacity: 0.7;
  cursor: pointer;
}