body {
  margin: 0; /* Αφαίρεση του περιθωρίου για να μην έχει πολύ κενό */
  padding: 0;
  font-family: Google Sans, Noto, Roboto, Helvetica Neue, sans-serif;
  color: #244376;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Κεντράρισμα του περιεχομένου */
  background-color: #f5f5f5;
}

#card {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: white;
  margin: 0 1em; /* Λιγότερο κενό γύρω από το card */
}

model-viewer {
  width: 100%;
  height: 400px;
  background: 
    linear-gradient(
    180deg,
    #707070 0%,
    #343434 100%
  );
}

.controls {
  margin-top: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 8px;
  text-align: center;
}

.controls select {
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #fff;
  margin-top: 10px;
}

.attribution {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0;
  padding: 10px;
  background-color: #eaeaea;
  border-radius: 8px;
}

.attribution h1 {
  margin: 0 0 0.25em;
}

.attribution img {
  opacity: 0.5;
  height: 2em;
}

footer {
  text-align: center;
  font-style: italic;
  line-height: 1.5em;
  margin-top: 2em;
}