@font-face {
  font-family: Montserrat-Bold;
  src: url('/fonts/Montserrat-Bold.ttf?') format('truetype');
}

@font-face {
  font-family: JetBrains-Mono;
  src: url('/fonts/JetBrainsMono-Regular.woff2?') format('woff2');
}

body {
  margin: 0;
  
  --bluck:#0C0F1E;
  --orange:#EE8732;
  --yellow:#F5C749;
  --sky:#00A3FF;
  --dark-blue:#225288;
}

#shop-root {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  
  background-image: linear-gradient(brown, black);
}

#shop-keeper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 95vw;
}

#shop-keeper-npc {
  width: 40vw;
}

.shop-keeper-window {
  width: 20vw;
  height: 30vh;
  background-color: var(--orange);
  box-shadow: 0px 0px 3vw 3vh;
  color: var(--orange);
}

#shop-dialog {
  display: flex;
  flex-direction: row;
  
  background-color: black;
  border: 10px solid white;
  color: white;
  font-size: 4vw;
  
  width: 95vw;
  height: 30vh;
  margin-bottom: 5vh;
}

#shop-dialog-text {
  flex: 1;
  
  height: 100%;
  
  margin: 10px;
  margin-top: 0;
}

#shop-dialog-text > p {
  margin-top: 10px;  
}

#shop-dialog-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  
  height: 100%;
  margin: 10px;
  margin-top: 0;
  padding-left: 2vw;
  padding-right: 2vw;
  border-left: 10px solid white;
}

#shop-dialog-action > a {
  color: white;
  text-decoration: none;
}

#shop-dialog-action > a > span {
  display: none;
}

#shop-dialog-action > a > span:hover {
  display: inherit;
}

#shop-dialog-action-money {
  flex: 1;
  color: var(--yellow);
}









