@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@font-face {
	font-family: "Lewiscarroll";
	src: url("fonts/Lewiscarroll.ttf"),local("Lewiscarroll");
}

body {
	display: block;
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
	background-image : url(images/touti_body.png);
	background-repeat:no-repeat;
	background-size: cover;
}

#touti_tete {
	width: 12%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	border-radius: 0% 0% 40% 10%;
	border-bottom: 2px solid white;
}

.touti_speaks {
	position: absolute;
	top: 2%;
	left: 15%;
    width: 25%;
	color: #ff00d4;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 5px;
	text-align:center;
	border-radius: 50px;
	font-family: 'Lucida Calligraphy', cursive;
	font-size: 25px;
	-webkit-text-stroke: 0.2px black;
}

section.section-phrase {
	display: block;
	position: relative;
	margin: auto;
	margin-top: 10%;
	margin-bottom: 70px;
	text-align: center;
}

footer {
    bottom: 0px;
    left: 0px;
    background-size: contain;
	width: 100%;
	font-weight: bold;
	background-color: rgba(255, 255, 255, 0.5);
}

span {
	display: block;
}

#phrase {
	display: block;
	width: 80%;
	margin: auto;
	margin-bottom: 1px;
	padding: 10px;
	font-family: Giveny;
	font-size: 40px;
	border-top: 5px inset #cc00ff;
	border-bottom: 5px outset #cc00ff;
	background-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
	text-align: center;
	color: black;
}

/* On efface le style du bouton pour le remplacer par un coeur plein d'amour */
.bouton {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
/* Pour le coeur <3 */
.bouton {
	display: block;
	width: 200px;
	height: 200px;
	margin: auto;
	margin-top: 140px;
	animation: pulse 1s ease infinite;
}
#image_de_coeur {
	width: 100%;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
  
}

@keyframes spin {
	100% {
		transform: rotateZ(360deg);
	}
}


section.touti-le_livre {
	display: block;
	margin: auto;
	text-align: center;
	width: 80%;
}
#livre {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: large;
	font-style: italic;
	color: white;
	text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
}
.touti-le_livre img {
	display: block;
	margin: auto;
	width: 200px;
	height: 300px;
	border: 3px solid lightblue;
}
@media (max-width: 900px) {
	.touti_speaks {
		width: 60%;
	}
	}
@media (max-width: 600px) {
body {
	width: 120%;
	height: 120%;
	transform-origin: top left;
	transform: scale(80%);
}
#touti_tete {
	width: 25%;
}
.touti_speaks {
	left: 25%;
    width: 70%;
}
}