/* RESET : */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: 
    linear-gradient(to bottom, rgba(10,10,10,0.2)0%, rgba(10,10,10,0.2)100%),
    url('background.png');
    height: 100vh;
    width: 100vw;

    display: flex;
    justify-content: center;
    align-items: center;
}


.horloge{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: hsl(186, 100%, 50%);
    text-shadow: 0 2px 100px hsl(188, 100%, 49%);
}

.heures{
   width: 1100px;
   font-size: 210px;
   font-family: 'Orbitron', sans-serif;
   font-weight: 1000;
   padding-bottom: 5px;
   border-bottom: 1px solid rgb(0, 247, 255);
 }

.date{
    font-size: 95px;
    font-family: 'Nunito Sans', sans-serif;
    padding-top: 10px;
}