
body {
  background-color: #048383;
  color: #fdffff;
  font-family: serif;
}
  
.Startbar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  height: 40px;
  background-color: #c3c3c3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#Startbtn {
  background-color: #c3c3c3;
  Font-family: Serif;
  Font-size: 20px;
  color: black;
  padding: 7px 30px;
  margin-left: 4px;
  border-top: 2px white;
  border-bottom: 2px solid black;
  border-left: 2px white;
  border-right: 2px solid black;

}

#startMenu {
  position: absolute;
  bottom: 40px; /* sopra la Startbar */
  left: 0;
  display: flex;
  width: 220px;
  background-color: #c3c3c3;
  color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px); /* parte leggermente sotto */
  transition: 0.25s ease;
}

#startMenu ul {
  list-style: none;
  margin: 0;
  padding: 10px;
}

#startMenu a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

#startMenu a:hover {
  background-color: #333;
}

/* quando il menu è aperto */
#startMenu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#clock {
    background-color: #989691; 
    margin-left: 60px;
    color: black;              
    padding: 5px 10px;        
    font-family: serif;
    display: flex;
    width: 105px;
    height: 28px;
    justify-content: center; 
    align-items: center;    
}