Domaine de Boisbuchet

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: ‘Futura’, sans-serif;
background-image: url(‘https://www.boisbuchet.org/wp-content/uploads/2025/04/Background-links-Boisbuchet3-1.png’);
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
color: black;
text-align: center;
padding: 0;
}

.container {
max-width: 100%;
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

h1 {
margin-bottom: 20px;
font-weight: 300;
font-size: 28px;
line-height: 1.2;
}

h1 strong {
font-weight: 700;
}

.button {
display: block;
width: 90%;
max-width: 320px;
margin: 10px auto;
padding: 14px 20px;
font-size: 16px;
font-weight: 300;
color: black;
background-color: white;
border: 2px solid black;
border-radius: 6px;
text-decoration: none;
transition: all 0.3s ease;
word-spacing: 2px;
}

.button:hover {
background-color: black;
color: white;
}

.footer {
margin-top: 40px;
font-size: 12px;
color: #333;
}

@media screen and (max-width: 400px) {
h1 {
font-size: 22px;
}

.button {
font-size: 14px;
padding: 12px 16px;
}
}