67 lines
859 B
CSS
67 lines
859 B
CSS
|
|
body {
|
||
|
|
font-family: 'Georgia', serif;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
color: #333;
|
||
|
|
background-color: #f9f9f9;
|
||
|
|
}
|
||
|
|
|
||
|
|
header {
|
||
|
|
background-color: #d4a76a;
|
||
|
|
color: #fff;
|
||
|
|
padding: 2rem;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav {
|
||
|
|
background-color: #e8d5b7;
|
||
|
|
padding: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav ul {
|
||
|
|
list-style-type: none;
|
||
|
|
padding: 0;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav ul li {
|
||
|
|
margin: 0 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav ul li a {
|
||
|
|
color: #333;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
main {
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
section {
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
footer {
|
||
|
|
background-color: #d4a76a;
|
||
|
|
color: #fff;
|
||
|
|
text-align: center;
|
||
|
|
padding: 1rem;
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1, h2 {
|
||
|
|
color: #d4a76a;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: #d4a76a;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
a:hover {
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|