129 lines
1.1 KiB
CSS
129 lines
1.1 KiB
CSS
/* Header */
|
|
|
|
.header {
|
|
|
|
background-color: #d6ab00;
|
|
|
|
padding: 1rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
/* position: fixed; */
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav li {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav a {
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav a:hover {
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Title */
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
font-size: xx-large;
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Main Text */
|
|
|
|
.container {
|
|
|
|
max-width: 80%;
|
|
|
|
margin: auto;
|
|
|
|
padding: 2rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-size: medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Footer */
|
|
|
|
footer {
|
|
|
|
background-color: #3e3e3e;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 1rem;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
}
|