* {
    padding: 0; margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    text-align: center;
    overflow: hidden;
    /*display: grid;
    gap: 0 0;
    grid-template-columns: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
    justify-content: space-evenly;
    align-content: space-between;*/
}
#display {
    display: inline-block;
    width: 1920px; height: 1080px;
    background-image: url("../home/pictures/Sallanches.jpeg");
    background-position: center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    margin-top: 100px;
    font-family: sans-serif;
}

#display #panelAnchor {
    float: center;
    width: 100%;
    height: 50px;
    text-align: center;
    padding: 10px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(255, 255, 255, 0) 100%);

}
#panel1 {
    display: inline-block;
    width: 1500px;
    height: 35px;
    background-color: rgba(25,25,25,0.55);
    box-shadow: 0 4px 30px rgba(0,0,0,.15);
    border: 1px solid rgba(55,55,55, 0.53);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
}

.panelItem {
    float: left;
    width: auto; height: 35px;
    padding-left: 8px; padding-right: 8px; padding-top: 5px;
    color: rgb(255,255,255);
    font-size: 20px;
}

#clock {
    float: right;
    font-weight: bolder;
}











