body {
  font-family: 'Bahnschrift' ,'Comic Sans MS', sans-serif;
  background: linear-gradient(to right, #fbc2eb, #a6c1ee);
  text-align: center;
  padding: 30px;
  color: #333;
}
h1 {font-size: 2.5rem;}
#aura-display {
  font-size: 2rem;
  margin: 0;
  padding: 15px;
  background: #fff5c0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0.4em;
  box-shadow: 0em 0em 1em;
}
#stock-mode {
  border-radius: 0.5em;
}
button {
  background-color: #55efc4;
  color: black;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: 'Bahnschrift' ,'Comic Sans MS', san-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 8px;
  box-shadow: 0 0 8px black;
  transition: all 0.1s;
}
button:hover {transform: scale(1.15)}
button:active {transform: scale(0.85)}
#click-btn {
  background-color: #ffeaa7;
  box-shadow: 0em 0em 1em;
}
.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin: 30px auto;
  /* max-width: 750px; */
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.triple-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0em 0em 1em;
}
.item, .upgrade, .stock {
  background: #dfe6e9;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0em 0em 1em;
}
.item div, .upgrade div {
  text-align: left;
  flex: 1;
}
.item button, .upgrade button {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 8px;
  background-color: #55efc4;
  box-shadow: 0em 0em 1em;
  border: none;
  cursor: pointer;
}
/* .stock-arrow.up {color: green;}
.stock-arrow.down {color: red;} */
#sd {
  border-radius: 0.5em;
  height: 3em;
  box-shadow: 0em 0em 1em black;
}

.third {
  flex: 1 1 32%;
  min-width: 250px;
}
.Stocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1rem 1fr;
  grid-template-areas: 
    "graph buy"
    "graph own"
    "graph sell";
}
canvas {
  grid-area: graph;
  max-width: 84vw;
}