/*General */
@font-face {
	font-family: "wild";
	src: url("../../assets/fonts/wild_wolf/wolf.ttf");
}

@font-face {
	font-family: "fresh";
	src: url("../../assets/fonts/fresh_fruit/Fresh\ Fruit.ttf");
}

section{
	margin: 5% auto 5% auto;
}

#groupe_avis{
	display: flex;
	width: 80%;
	margin: 0 auto;
	justify-content: space-around;
	margin: 5% auto 5% auto;
}

.exemple_avis{
	box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.3);
	background-color: white;
	width: 30%;
	border-radius: 15px;
}

.exemple_avis p, .exemple_avis img{
	text-align: center;
}

.exemple_avis img{
	width: 100px;
	height: 100px;
	margin: 17px 40%;
}

.exemple_avis .nom-proprietaire{
	font-weight: bold;
	color: #ddba77;
	font-size: 30px;
}

.nom-chien{
	font-weight: bold;
	color:  goldenrod;
	font-family: fresh;
	font-size: 40px;
}

.etoile{
	margin: 15px;
	font-size: 30px;
}

.etoile .checked {
	color: #ddba77;
}

.description_avis{
	text-align: justify !important;
	width: 60% !important;
    margin: 0 auto !important;
	
}

.description_avis span{
	font-family: wild;
	font-size: 40px;
	color: goldenrod;
}


.moreavis{
	margin-top: 25px;
	padding-bottom: 150px;
	color: goldenrod;
	font-size: 30px;
}

.moreavis:hover{
	color: #3b3b3b;
	text-decoration: none;
}


/*Format téléphone */
@media(max-width: 768px){
	#groupe_avis{
		flex-direction: column;
	}

	.exemple_avis{
		width: 100%;
		margin-bottom: 40px;
	}
}