
*{
	font-family: 'Century Gothic';
	font-size: 20px;
    margin: 0;
}

/* HAUT DE PAGE */
.top-page{
	background-image: url(../assets/medical.jpg);
	background-repeat: no-repeat; /* l'image ne se répète pas s'il n'y a pas assez d'espace */
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100vh;
	font-family: 'Century Gothic';
}
.logo-sabr{
	width: 400px;
	height: 60px;
	margin: 30px;
}

header{
	display: flex;
	align-items: center;
	padding: 10px;
}
header img{
	margin-left: 100px;
	animation-name: slideX;
	animation-duration: 1.5s;
}

nav{ 
	display: flex;
	justify-content: space-between; /* espacement des items du menu */
	list-style: none; /* suppression des puces de la liste */
	margin-left: 2%;
	width: 80% ;
}
nav li a{
	color: white;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none; /* suppression du soulignement du lien */
}
nav li a:hover{ 
	transition: all 0.3s ease-in-out; /* changement de couleur lors de la selection */
	color: #3D7CBB; /* bleu */
}


/* GROS TITRE */ 
#big-title{
	display: flex;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
}
#big-title h1{
	margin-left: 30%;
	margin-right: 10%;
	margin-top: 10%;
}
#big-title h1 span{
    position: relative;
	color: white;
	font-size: 40px;
	margin-bottom: 10%;
}




/* BAS DE PAGE */
footer{
	background-color: #181818;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 50px;
}

.footer-item{
	width: 25%;
	margin: 20px;
	color: white;
	font-family: 'Century Gothic';
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
#contact{
  height: 40px;
 	align-self: flex-end;
}
#contact:hover{
  height: 40px;
 	opacity: 0.7;
  transition: 0.7s;
}
#enveloppe{
  align-self: center;
  animation-duration: 1s;
  animation-name: jump;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes jump {
  from {
    padding-bottom: 0px;
    padding-top: 10px;
  }
  to {
    padding-bottom: 10px;
    padding-top: 0px;
  }
}