body{
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2rem;
  margin-bottom: 0;
  background-color: #121212;
  font-size: small;
  font-family: 'Noto Serif', serif;
  color: rgb(213, 217, 220);
}

#consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#consent-box {
  max-width: 40vw;
  max-height: 40vw;
  text-align: center;
  padding: 20px;
  background-color: #121212;
  border: #fff 1px solid;
  border-radius: 10px;
}

@media only screen and (orientation: portrait) {
  #consent-box {
    max-width: 70%;
    max-height: 70%;
  }
}

#consent-box h2 {
  margin-bottom: 10px;
}

.consent-button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.consent-button.yes {
  /* background-color: #4caf50; */
  color: #fff;
  background-color: #121212;
  border: #fff 1px solid;
}

.consent-button.no {
  /* background-color: #f44336; */
  background-color: #121212;
  border: #cfcfcf 1px dashed;
  color: #cfcfcf;
}

.bordi {
  margin: 3rem;
}

.bordino {
  /* background-color: green; */
  border: solid 2px grey;
  padding: 1rem;
}

.centralizzatore {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  flex-wrap: wrap;
  gap: 1em;
}

a {
  color: rgb(213, 217, 220);
}

h1 {
  font-size: xx-large;
}

p {
  font-size: large;
}

#renderer-container {
  width: 80vw;
  height: 70vh;
  background-color: #121212;
  /* border: white solid 2px; */
}

#loader {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-transform: uppercase;
  animation: fade 200ms ease-in-out infinite;
}

@keyframes fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}