body {
	background-color: light-blue;
}
img {
	height: 300px;
	display: flex;
	position: right;
	margin: -10px;
}

p {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	color: black;
	-webkit-text-stroke: 0.3px blue;
}

h1 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
	-webkit-text-stroke: 0.7px yellow;
	color: blue;
	font-size: 100px;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: auto;
	margin-left: auto;
	font-align: center;
	padding: 0;
	height: 900px;
}

@keyframes resize {
    0%, 100% {
        font-size: 100px; 
		color: blue;
    }
    50% {
        font-size: 150px; 
		color: yellow;
    }
}

h1 {
    animation: resize 10s infinite;
}

div p {
	display: flex;
	align-items: center;
	flex-direction: row;
	font-family: arial;
	font-size: 20px;
}
	
	
nav {
	color: green;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border: solid black;
	border-left: none;
	border-right: none;
	background-color: white;
	cursor: pointer;
	text-align: center;
	padding: 10px;
	stroke: 5px;
	margin: 0;
}

nav a {
	margin: 0 10px 0 0;
}

nav:hover {
	background-color: #ffffff;
	border: 2px solid #1f69ec;
    box-shadow: 10px 5px 5px #719fee;
    color: #1f69ec;
    text-align: center;
    font-size: 22px;
}

button{
    display: block;
    background-color: #719fee;
    border-radius: 10px;
    border: 4px double #1f69ec;
    color: #ffffff;
    text-align: center;
	font-size: 20px;
	padding: 10px;
	width: 200px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

button:hover{
    background-color: #ffffff;
    border: 2px solid #1f69ec;
    box-shadow: 10px 5px 5px #719fee;
    color: #1f69ec;
    text-align: center;
    font-size: 22px;
}

input[type=text], select, textarea {
  width: 100%; 
  padding: 12px; 
  border: 1px solid #ccc; 
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px; 
  margin-bottom: 16px;
  resize: vertical;
  background-color: white;
}

input[type=text] {
  background-color: white;
  color: grey;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=text]:hover {
  background-color: lightgray;
}

.container {
  border-radius: 5px;
  background-color: lightblue;
  padding: 20px;
  border: 1px solid blue;
}

footer {
	background-color: darkblue;
	color: white;
}

footer a {
		color: white;
}

.ligne {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	width: 100%;
}

.ligne img {
	width: 50%; 
}

.Geo {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
	top: 0;
}