
.led-blue {
    margin: 0 auto;
    width: 24px;
    height: 24px;
    background-color: #24E0FF;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #006 0 -1px 9px, #3F8CFF 0 2px 14px;
  }

.led {
    margin: 0 auto;
    width: 24px;
    height: 24px;
    background-color: #24E0FF;
    border-radius: 50%;
    /*box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #006 0 -1px 9px, #3F8CFF 0 2px 14px;*/
  }

.led[valore = "1"] {
    background-color: #24E0FF;
    box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #006 0 -1px 9px, #3F8CFF 0 2px 14px;
}

.led[valore = "0"] {
    background-color: #30302f;
    box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset rgb(63, 63, 63) 0 -1px 9px, #30302f 0 2px 14px;
}

body{
    background: #30302f;
    width: 99%;
    height: 95%;
    align-items: center;
    
}
.titolo{
    font-size: xx-large;
    font-weight: bold;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    margin-bottom: 20px;
}
.legenda{
    display: flex;
    text-align: center;
    width: 100%;
    background-color: azure;
}
.ore{
    display: flex;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    width: 80px;
}
.minuti{
    display: flex ;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    width: 80px;
}
.secondi{
    display: flex;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    width: 80px;
}
.clock{
    border-width: 2px;
    border-radius: 10px;
    margin-left: 33%;
    margin-right: 33%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    min-width: 240px;
}
.clock:hover + .data{
    display: block;
}

.data{
    display: none;
    width: 100%;
    text-align: center;
    align-items: center;
    margin-top: 20px;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.ledblock{
    margin-top: 10px;
    margin-bottom: 5px;
    width: 40px;
    height: 150px;
    display: grid; 
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 1fr 1fr 1fr; 
    gap: 10px 10px;
    align-content: space-around; 
    grid-template-areas: 
      "."
      "."
      "."
      "."; 
}