/*
    Auteur: Jackie Pan
    Date de création: 10.01.2025
    Description: Ceci est le code CSS de la page HTML qui sert à changer les styles et position.
*/
body {
    background-color: #eda842;
}

p {
	display: flex;
    width: 600px;
    height: 250px;
    background-color: #fcc26d;
    margin-left: 10%;
	padding: 30px;
	justify-content: center;
    align-items: center;
	border-radius: 20px;
	font-size: 20px;
	text-align: justify;
}
nav{
	background-color: #c78304;
}

img {
    margin: auto;
	border-radius: 10px;
}

header {
	color: white;
}

h3 {
    text-align: center;
    margin: auto;
    color: white;
    max-width: 50%;
    margin-bottom: 100px;
}

.square {
    display: flex;
}

.tappei_description {
    margin: auto;
    font-size: 25px;
	color: red;
}

@media screen and (max-width: 1000px) {
    img {
        margin: 0px;
    }
    div p {
        margin-left: auto;
		margin-right: auto;
		margin-top: 50px;
		height: auto;
    }
	
	.tappei_description {
		height: 100px;
		width: 400px;
	}
}