body {
    background-image: url("batiment-uknikin.png");
     background-color: #ffffff;
    background-size: cover; /* Ajuste la taille pour couvrir l'ensemble de l'élément */
    background-position: top; /* Centre l'image dans l'élément */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    font-family:  'Roboto', 'Montserrat', 'Lato', 'Open Sans';
    margin: 0;
    padding: 0;
}
#header-nav{
    position: fixed;
    top:0;
    width: 100%;
    z-index: 1;
}

header {
    background-color: #0b2746;
    color: #fff;
    text-align: left;
    padding-left: 10px 0;
   
}

.logo{
    height: 12%;
    width: 16%;
}
.titre{
    text-align: center;
}

nav {
    background-color: #444;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

.search-bar {
    text-align: center;
    margin-top: 20px;
}

.input[type="text"] {
    padding: 10px;
    width: 70%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[id="sub-btn"] {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: solid 2px black;
    margin-left: -4px;
   
    
    cursor: pointer;
    height: 55px;
}
#footer a {
text-decoration: none;
color: #fff; /* Définir la couleur des liens */
}
#footer a:hover{
text-decoration: none;
color: #fff; /* Définir la couleur des liens */
background-color:black;
}
a:hover{
    background-color: #fff;
    color: #333;
}
#sub-btn:hover{
    background-color: #fff;
    color: #333;  
    border:  2px solid black;
    height: 50px;
}
#search-bar{
    height: 50px;
    width: 700px; 
}

@media only screen and (max-width: 600px) {
    input[type="text"] {
        width: 90%;
        max-width: none;
    }
}