body {
  margin: 0;
  font-family: garamond;
}

#app {
  font-family: garamond;
  height: 100%;
}

.start-container {
  display: flex;
  width: 100%;
  height: 100vh;
  margin-top: auto;
  background-color: black;

}

.start-button, .actions {
  position: fixed;
  width: 20vw;
  padding: 2vw;
  border: 1px solid black;
  color: rgb(69, 46, 8);
  font-family: garamond;
  cursor: pointer;
  font-weight: 900;
  font-size: 2vw;
  background-color: transparent;
  margin-top: 40%;
  transition: 0.4s;
}

.start-button:hover {
  background-color: rgba(207, 211, 215, 0.126);
  color: black;
}

.step-container {
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: black;
  align-items: center;
}

.step {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 2vw;
  color: rgb(159, 155, 155);
  background-color: rgba(99, 96, 100, 0.057);
  width: 60vw;
  height: 85%;
  margin: auto;
  padding: 2vw;
  line-height: 2vw;
  letter-spacing: 0.2vw;
  box-sizing: border-box;
  min-height: 0;
}


h2 {
  display: flex;
  width: fit-content;
  font-size: 1.4vw;
  margin: 0 auto;            
  white-space: pre-wrap;     
}

.choices {
  display: grid;
  gap: 0.5vw;
  transition: .4s;
  margin: 0;  
  background-color:transparent;
  overflow: hidden;
}

.choice {
  color: rgba(255, 255, 255, 0.626);
  padding: 1vw;
  font-family: garamond;
  font-size: 1.2vw;
  font-weight: 600;
  border: 1px solid black;
  background-color: rgba(52, 48, 46, 0.221);
  justify-content: center;
  overflow: hidden;

}

.choice:hover {
  background-color: rgba(0, 0, 0, 0.837);
  color: rgba(230, 230, 230, 0.898);
  cursor: pointer;
}

/* 🟥 Box descrizione */
.desc-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0; 
  overflow: hidden;
  position: relative;
  min-height: 0;
  box-sizing: border-box;
}


.desc-content {
  padding: 1.5vw;
  height: 100%; 
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-gutter: stable both-edges;
}


.actions-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1vw;
  overflow: hidden;

}

.desc-content::-webkit-scrollbar { width: 6px; }
.desc-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}


@media only screen and (max-width: 1200px) {

body {
  font-size: 2vw !important;
}

h2 {
  line-height: 3.5vw;
  font-size: 3vw;
}

.step-container {
}

.step {
  height: 60%;
  font-size: 2vw !important;
}

.choice {
  font-size: 3vw;
}

}


@media only screen and (max-width: 600px) {

body {
  font-size: 2vw !important;
}

h2 {
  line-height: 3.5vw;
  font-size: 4vw;
}

.step-container {
}

.step {
  height: 50%;
  font-size: 2vw !important;
}

.choice {
  font-size: 4vw;
}

}