GSB2temp/Styles/style.css

100 lines
1.5 KiB
CSS

body {
margin: 0;
background-color: #ffffff;
color: #333;
font-size: 20px;
}
.main-header {
background-color: #ffffff;
border-bottom: 4px solid #f57c00;
padding: 20px 40px;
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.main-nav {
margin-top: 20px;
text-align: center;
}
.main-nav ul {
list-style: none;
padding: 0;
margin: 0;
display: inline-flex;
gap: 30px;
}
.main-nav a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s;
}
.main-nav a:hover {
color: #f57c00;
}
.logo-section {
display: flex;
align-items: center;
gap: 15px;
}
.logo-section .baseline {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1em;
font-style: italic;
color: #f57c00;
}
.nav-right {
text-align: right;
}
.btn-connexion {
background-color: #f57c00;
color: #fff;
padding: 12px 25px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background 0.3s;
}
.btn-connexion:hover {
background-color: #e65100;
}
.main-content {
text-align: center;
padding: 100px 20px;
}
.main-content h2 {
font-size: 2.5em;
color: #f57c00;
margin-bottom: 15px;
}
.main-content p {
font-size: 1.2em;
color: #555;
}
.main-footer {
background-color: #f57c00;
color: white;
text-align: center;
padding: 20px 10px;
position: fixed;
bottom: 0;
width: 100%;
}