English-machbeath-website/style.css
Unknown 420af4a811
.
2025-03-07 12:05:43 -07:00

70 lines
No EOL
1 KiB
CSS

/* style.css */
body {
font-family: 'Georgia', serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f5f3e6;
color: #333;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #7b3e19;
text-align: center;
margin-bottom: 30px;
font-size: 2.5rem;
border-bottom: 2px solid #7b3e19;
padding-bottom: 10px;
}
nav {
background-color: #522b10;
padding: 15px 0;
margin-bottom: 20px;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: center;
padding: 0;
margin: 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #f5f3e6;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
font-size: 1.1rem;
}
nav ul li a:hover {
color: #dca76d;
}
p {
margin-bottom: 20px;
font-size: 1.1rem;
}
@media (max-width: 768px) {
nav ul {
flex-direction: column;
align-items: center;
}
nav ul li {
margin: 10px 0;
}
}