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

@font-face {
  font-family: "OxygenMono";
  src: url("/css/fonts/OxygenMono-Regular.ttf");
  size-adjust: 100%;
}

@font-face {
  font-family: "HARLOWSI";
  src: url("/css/fonts/HARLOWSI.TTF");
  size-adjust: 100%;
}

@keyframes changeBg {

    0% { background: #e4dcd3; }
    25% { background: #eeebd2; }
    50% { background: #f1c8a6; }
    75% { background: #e0c996; }
    100% { background: #ddd3bb; }

}

html {
    margin: 0;
    padding : 0;
}

    @keyframes blink {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .zoom {
        margin: 0 auto;
    }

    .zoom:hover {
        transition: transform 1s, filter .5s ease-out; transform: scale(2.0);
    }

    #Liens {
        text-decoration:none;
        cursor:pointer;
    }

    #Liens:hover {
        background-color:#FFDAB9;
        text-decoration:none;
        cursor:pointer;
    }

    .divMsg {
        position: relative;
        top:60px;
        left:100px;
        height:auto;
        border:2px ridge maroon;
        background-color:whitesmoke;
        padding:12px;
        text-align:center;
    }



/* Tablettes (portrait & landscape) */

@media only screen and (min-width : 768px) and (max-width:1023px) {

}


/* Mobile */

@media only screen and (max-width : 767px) {

    body {
    	width:480px;
        text-align:center;
        margin-left: 10px;
    	font-size: 1em;
    	line-height: 1.6;
     	font-family: Helvetica, Arial, sans-serif;
        height: 100vh;
        animation: changeBg 8s infinite alternate linear;
    }

    #tabStandard {
        background-color: rgba(0, 0, 0, .20);
        border: 2px ridge maroon;
        -moz-border-radius: 9px;
        -webkit-border-radius: 9px;
        padding: 12px;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    }

    #tabStandard th {
        border: 1px dotted gray;
        color: rgb(102,51,51);
        font-size: 14;
        background-color: #b2b2b1;
        text-align: left;
        width: 100px;
    }


    #tabStandard select {
        padding: 2px;
        border: #a5d2ca 1px solid;
        border-radius: 4px;
        background-color: whitesmoke;
        width: 200px;
        margin-top:5px;
        color: maroon;
        text-align:center;
    }

    #tabStandard input {
        border: #a5d2ca 1px solid;
        border-radius: 4px;
        background-color: whitesmoke;
        width: 200px;
        color: maroon;
    }

    #tabStandard textarea {
        height:150px;
        width:400px;
        padding: 2px;
        border: #a5d2ca 1px solid;
        border-radius: 4px;
        background-color: whitesmoke;
        margin-top:5px;
        color: maroon;
    }

    .footer {
        position:relative;
        top:0px;
        background-color:rgba(154, 154, 154, 0.60);
        border: 2px ridge lightgray;
        text-align:center;
        margin:auto;
        bottom:0;
        width:480px;
    }

    .footer a {
        color: white;
        text-decoration:none;
    }

}

/* Desktop (portrait & landscape) */

@media only screen and (min-width: 1440px) {

}

/* PC */

@media screen and (min-width: 980px) {

    body {
        width:480px;
        text-align:center;
        margin-left: 10px;
        font-size: 1em;
        line-height: 1.6;
        font-family: Helvetica, Arial, sans-serif;
        height: 100vh;
        animation: changeBg 8s infinite alternate linear;
    }

    #tabStandard {
        background-color: rgba(0, 0, 0, .20);
        border: 2px ridge maroon;
        -moz-border-radius: 9px;
        -webkit-border-radius: 9px;
        padding: 12px;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    }

    #tabStandard th {
        border: 1px dotted gray;
        color: rgb(102,51,51);
        font-size: 14;
        background-color: #b2b2b1;
        text-align: left;
        width: 100px;
    }


    #tabStandard select {
        padding: 2px;
        border: #a5d2ca 1px solid;
        border-radius: 4px;
        background-color: whitesmoke;
        width: 200px;
        margin-top:5px;
        color: maroon;
        text-align:center;
    }

    #tabStandard input {
        border: #a5d2ca 1px solid;
        border-radius: 4px;
        background-color: whitesmoke;
        width: 200px;
        color: maroon;
    }

    #tabStandard textarea {
        height:150px;
        width:400px;
        padding: 2px;
        border: #a5d2ca 1px solid;
        border-radius: 4px;
        background-color: whitesmoke;
        margin-top:5px;
        color: maroon;
    }

    .footer {
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 60px;
        padding-top: 10px;
        text-align: center;
        background-color:rgba(154, 154, 154, 0.60);
        border: 2px ridge lightgray;
        text-align:center;
        margin:auto;
    }

    .footer a {
        color:maroon;
    }

}

/* */
