
.border{
	border: 1px solid;
}

body {
	padding: 10px 15%;
	background-color:lightpink;
}

.menu {
	display: flex;
    background: red; 
    padding: 10px;
    border-radius: 10px;
    background-color: #e57f8d;
    width: 100%;
    overflow: scroll;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu {
        justify-content: flex-start !important;
    }
    body {
        padding: 10px 30px;
    }
}

.menu a {
	outline: none;
    text-decoration: none;
    color: white;
    text-wrap: nowrap;
    padding: 0 10px;
}
.menu a:hover {
	outline: none;
	text-decoration: none;
	color: #6c2549;
}

.home {
	display: flex;
}


.home-div-1 {
	width: 70%;
	height: 200px;
	display: flex;
	justify-content: center;
}
.home-div-1 hr {
	width: 50%;
}
.home-div-1 div {
	padding: 0 15px;
    text-align: center;
    width: fit-content;
    height: fit-content;
    background: #e57f8d;
    border-radius: 10px;
}

.home-div-2 {
	display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}
.home-div-2 img {
	width: 100px;
    border-radius: 20px;
}

.reseau a {
	margin: 0 10px;
}

.reseau div {
	display: flex;
	justify-content: center;
}
