@font-face {
   font-family: 'Gil';
   src: url(‘/Fonts/Storehouse-Stencil.woff’) format(‘woff’),
	url(‘/Fonts/Storehouse-Stencil.woff2’) format(‘woff2’),
        url(‘/Fonts/Storehouse-Stencil.otf’) format(‘opentype’)
}
body {
   font-family: 'Storehouse-Stencil';
   background-color: #5C97B8;
}
.container {
    display: flex;
    flex-direction: column; /* Pour empiler l'image et le texte */
    justify-content: center; /* Centrage vertical */
    align-items: center; /* Centrage horizontal */
    height: 100vh; /* Hauteur de la fenêtre */
    text-align: center; /* Alignement du texte */
}

a {
    text-decoration:none;
}

.logo {
   max-width: 60%; /* S'assurer que l'image s'adapte au conteneur */
   height: auto;
   margin:2em;
}