body{
	--base-color :#313131;
	--sec-color :#c53a35;
	--fond-color :#008080;
	--social-color :#3f82a9;
	--cogni-color :#3fa93f; 
	background-color: #eeeeee;
	max-width: 100vw;
	margin: 0;
	font-family: 'Glory', sans-serif;
	border-top: 10px solid var(--base-color);;
}

footer{
	height: 45px;
    background-color: gray;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


input {
    height: 45px;
    font-family: 'Glory', sans-serif;
    padding: 15px 20px;
    border: 1px solid #eceef0;
    background: #f9fafb;
    border-radius: 2px;
    width: 100%;
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    font-family: 'Glory', sans-serif;
    padding: 15px 20px;
    border: 1px solid #eceef0;
    background: #f9fafb;
    border-radius: 2px;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: var(--base-color);
    color: white ;
}

.grid{
	display: grid;
  	grid-template-columns: repeat(2, 1fr);
  	grid-gap: 10px;
 	 grid-auto-rows: minmax(100px, auto);
 	 margin-top: 25px;
}

.logo{
	display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    flex-direction: column;
    font-size: 20px;
}

.logo img{
	margin-bottom: 10px;
}

.ban{
	display: flex;
    align-items: flex-end;
    justify-content: center;
    border-bottom: 10px solid var(--sec-color);
}

.banImg{ max-width: 100vw; }

.images img{ max-width: 100%; transition: transform .5s;}

.images img:hover{
-ms-transform: scale(1.5); /* IE 9 */
-webkit-transform: scale(1.5); /* Safari 3-8 */
transform: scale(1.5);
}

.wrapper {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 25px;  	

}

h1{ 
	color: white;
	font-family: 'Glory', sans-serif;
    font-size: 55px;
    text-shadow: 0 0 6px black;
}

h2{ 
	color: var(--base-color);
	font-family: 'Glory', sans-serif;
    font-size: 50px;
}

h3{ 
	color: var(--base-color);
	font-family: 'Glory', sans-serif;
    font-size: 30px;
}

a, a:visited{
    text-decoration: none;
    font-weight: bolder;
    color: var(--sec-color);
    font-size: 20px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
      color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.fixalu{
    width:250px;
    text-align: center;
}

.fixalu > * {
    margin-bottom: 1px !important;
}

li{
    font-size: 20px;;
}

@media (max-width: 768px) {

    .logo {
        text-align: center;
    }

    .logo img{
        width: 350px;
    }

    .fixalu img{
        width: 200px;
    }

    .presta{
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .ban {
        align-items: center;
    }

    h1 {
        font-size: 30px;
    }
    .banImg {
        height: 180px;
        max-width: none;
    }
}