@font-face{
  font-family: 'maFonte';

    src: url("Orbitron-Regular.ttf") format("truetype");
}
body {
    
font-family:"maFonte",Helvetica;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing:4px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

header .logo {
align-items: center;
    font-size: 20px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;

}
header h3 {
        
    text-align: center;
    font-size:30px;
    letter-spacing:10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;


}

section {
    color: #fff;
    padding: 60px 20px;
}

.hero {
    text-align: center;
    background: url('../images/background.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (min-width: 800px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery a {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* Adjust this value to control the aspect ratio */
    overflow: hidden;
    border-radius: 0px;
}

.gallery img {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
.gallery h5 {
   display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* Adjust this value to control the aspect ratio */
    overflow: hidden;
    border-radius: 0px;
           background-color:#333;
              

}


.gallery li {
 
position: relative;
text-align: end;
        margin-right:0.75vw;
        
 /*   color: #fff;*/
    font-size:1.45vw;
    letter-spacing:0.55vw;;



}
.gallery p {

    font-size:0.75vw;
    color:#d0695e;
    letter-spacing:0.35vw;
        text-align: end;
        margin-right:20px;
        

}
h2{

color: #333;

}
form {

    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #333;

}

form label {
    font-size: 18px;
}

form input, form textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    font-family:"maFonte",Helvetica;
        letter-spacing:4px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}
#taille{
padding-top:5px;
	padding:5px;

	font-style: italic;
}