This commit is contained in:
2023-10-20 16:28:54 +03:00
parent 657d4e4d21
commit 168444751b
2 changed files with 154 additions and 4 deletions

128
style.css Normal file
View File

@@ -0,0 +1,128 @@
/* 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%;
}