/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clear {
  clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
  font-family: "Gloria Hallelujah", cursive;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: rgb(240, 230, 193);
}

.scene {
  min-width: 80%;
  height: 80vh;
  position: relative;

}

/******************************************
/* LAYOUT
/*******************************************/
.menu {
  font-size: 0.5rem;
  height: 110px;
  width: 120px;
  padding: 0 5px;
  position: absolute;
  top: 24%;
  right: 39%;
  color: white;
}

.menu small {
  font-size: 0.8rem;

}

button {
  position: absolute;
  border: 2px solid black;
  box-shadow: 10px 5px  gray;
  font-size: 1.5rem;
  padding: 2px 0;
  top: -7%;
  right: 0;
  width: 40%;
}

button:hover{
  color: white;
  background-color: rgba(136, 40, 40, 0.829);
}

.portrait {
  width: 200px;
  height: 200px;
  border: 1px solid;
  border-radius: 50%;
  object-fit: cover;
}

.character-one {
  position: absolute;
  top: 52%;
  left: 76%;
  color: white;
}

.character-two {
  position: absolute;
  top: 52%;
  left: 19%;
  color: white;
  z-index: 40;
}

.character-three {
  position: absolute;
  top: 38%;
  left: 43%;
  color: white;
}

.character-three .portrait{
  width: 160px;
  height: 160px;
}

.name {
  background-color: rgba(136, 40, 40, 0.829);
  padding: 10px;
  width: fit-content;
  border: 1px solid black;
  border-radius: 10px;
}

h3{
  /* position: relative; */
  text-align: center;
  color: black;
}

.store-next-door{
  background-color: rgba(136, 40, 40, 0.829);
  color: white;
  padding: 0 1rem;
  border: 2px solid black;
}



/******************************************
/* ADDITIONAL STYLES
/*******************************************/

img {
  height: 100%;
  object-fit: contain;
  border-left: 20px solid rgba(85, 114, 179);
  border-right: 20px solid rgba(85, 114, 179);
}