body, html
{
    font-family: 'Kaushan Script', cursive,Arial, Helvetica, sans-serif;    
    background-image: initial;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;    
    width:100%;
    height: 100vh;
    color: aqua;
}
.link
{
    color: white;
}
.link:hover
{
    color: rgb(255, 0, 0);
}
.menu
{
    /* positionnement du menu dans la zone - commence a 15px à gauche et a 10px du haut */
    padding-left: 15px;
    padding-top: 10px;
    font-size: x-large;
    color: yellow;
    text-shadow: 5px 5px 5px #000;
    background: rgba(95, 73, 195,1);
}
/* définition des différents élément composant la page */
#Horloge
{
    position: absolute;
    padding-top: 4px;
    /* transform: translate(-0%,-0%); */
    top: 5px;
    left: 15px;
    width: 168px;
    background-color: black;
}
#titre
{
    margin: auto;
    width: 100%;
    height: 100%;
    line-height: 3.5;
    padding: 5px 5px;
    margin: auto;
    font-size: large;
    text-align: center;
    color: white;
    text-shadow: 5px 5px 5px #000;
    border-radius: 10px;
    background-color: blue;
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}
#postedeact
{
    margin: auto;
    width: 100%;
    height: 100%;
    line-height: 3.5;
    padding: 5px 5px;
    margin: auto;
    font-size: large;
    text-align: center;
    color: white;
    text-shadow: 5px 5px 5px #000;
    border-radius: 10px;
    background-color: rgb(251, 255, 0);
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

/* Touche Responsable */
#touche1
{
    color: white;
    text-shadow: 5px 5px 5px black;
    font-size: large;
    margin: auto;
    width: 100%;
    height: 100%;
    padding: 5px 5px;
    vertical-align: middle;
    border-width: 1px;
    border-radius: 10px;
    border-style: solid;
    background-color: cyan;
    background-image: linear-gradient(to top left,
                                        rgba(0, 0, 0, .2),
                                        rgba(0, 0, 0, .2) 30%,
                                        rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}
#touche1:hover
{
    background-color: rgb(0, 255, 60);
    color: white;
    text-shadow: 5px 5px 5px rgb(255, 0, 0);
}
#touche1:active
{
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, .6);
}
