@font-face {
    font-family: "Dancing Script" ;
    src: url(/assets/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Radley" ;
    src: url(/assets/fonts/Radley/Radley-Regular.ttf);
}
@font-face {
    font-family: "RadleyIt";
    src: url(/assets/fonts/Radley/Radley-Italic.ttf);
}
*{
    margin: 0;
}
body{
    color: blanchedalmond; 
    background: url(../images/photofondpresentation.jpg) center/cover;
    min-height: 100vh;
}
h1{
    font-family: "RadleyIt";
    font-size : 4em;
    text-align :center;
    background: fixed, rgba(0, 0, 0, 0.329);
    padding: 25px;
}
.motimportant{
    font-weight: bold;
    font-family: "Dancing Script";
    font-size : 5rem;
}
#button{
    width: 49%;
    height: 10%;
    background-color: transparent;
    text-align: center;
    font-weight: bolder;
    color:blanchedalmond;
    cursor: pointer;
    transition : 0.2s;
    padding: 30px;
    font-size: 1.5em;
    border-width : 0.5px 0 0.5px 0;
    border-style: solid;
    border-color: transparent;
}
#button:hover{
    border-width : 0.5px 0 0.5px 0;
    border-style: solid;
    border-color: blanchedalmond;
    background-color: transparent;
    text-align: center;
    font-weight: bolder;
    color:blanchedalmond;
    font-size: 2em;
    /* Le changement de padding évite les mouvements du texte lorsque le pointeur 
    passe sur le texte */
    padding: 23px;
}
/*  RESPONSIVE : Changer la taille de l'écriture en fonction de la taille de l'écran.
Grosse écriture : petit écran   ------   Petite écriture : grand écran 

RAPPEL : Taille écran ordi sup à 768px
Taille écran téléphone inf 600px */

@media screen and (min-width 1440px){
    /* TAILLE TELEPHONE PORTABLE  */

    #button{
        width: 49%;
        height: 10%;
        background-color: transparent;
        text-align: center;
        font-weight: bolder;
        color:blanchedalmond;
        cursor: pointer;
        transition : 0.2s;
        padding: 30px;
        font-size: 10em;
        border-width : 0.5px 0 0.5px 0;
        border-style: solid;
        border-color: transparent;
    }
}