@font-face {
    /* On donne un nom à la police : */
    font-family: "Ma police";
    /* On indique son emplacement sur le serveur : */
    src: url("../fonts/Josefin.ttf");
}



h1 {
    font-family: "Ma police", "Times", serif;
    /* On veut mettre un cadre coloré au titre. */
    border-color: rgb(40, 43, 200);
    /* Par défaut, le cadre est invisible ; on le rend visible. */
    border-style: dashed solid;
    /* On centre le texte dans le cadre. */
    text-align: center;
    margin : 10px 125px 10px 125px;
    padding: 10px 10px 10px 10px;
    background-color: #f7f0de;
}
h2 {
    text-decoration: underline;
}
h3 {
    text-decoration: underline dotted;
}
blockquote{
    background-color:lightgray;
    border-radius: 5px;
}

p {
    color:black;
    background-color: transparent;
}

/**BACKGROUND**/
body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 800%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

body main {
  background-size: 10px 10px;
  background-image: linear-gradient(-45deg, var(--col), transparent);
  --col: rgba(255, 255, 255, .2);
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*BUTTON */
    
    .wrapper {
    margin: 80px auto;
    text-align: center;
    width: 100%;
    position: relative;
    }
    .button {
    padding: 10px 15px;
    margin:10px 4px;
    margin-top: 15px;
    color: #eee;
    font-family: sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    text-decoration: none;
    display:inline-block;
    border:1px solid ;
    top:0%;
    }
    .button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: scaleY(.1);
    transform: scaleY(.1);
    transition: all .4s
    
    }
    .button:hover{
    color:#b414ba;  
    }

    .button:hover::before{
    opacity: 1;
    background-color: #f7c2f9;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    transition: -webkit-transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity .4s;
    transition: transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity
    }

    