/* Generic */

body {
  font-family: fantasy;
}

html,
body {
  height: 100%;
  width: 100%;
}

.sticker:hover {
  transform: rotate(3deg);
  position: relative;
}

.sticker:hover ~ .sticker-text {
  display: inline-block;
}

.sticker-text {
  position: absolute;
  transform: translate(-50%, -50%);
  color: white;
  display: none;
}

a:link, a:visited {
  color: white;
}

/* Home page styles */

.body-home {
  background-color: rgb(20, 63, 20);
  background-image: url("images/forest_background.jpg");
  color: black;
}

.house {
  width: 600px;
}

.main-container {
  height: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  text-align: center;
}

/* Living room styles */

.body-room {
  background-color: rgb(119, 63, 14);
  background-image: url("images/wood_texture.jpg");
  color: white;
}

.brown-bg {
  background-color: rgb(119, 63, 14);
}