ujicoba / styles (3).css
GarGerry's picture
Upload 3 files
d0ae61d verified
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: black;
color: white;
line-height: 1.6;
margin: 0;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background: black;
border-bottom: 1px solid white;
position: sticky;
top: 0;
z-index: 1000;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.navigation ul {
display: flex;
list-style: none;
}
.navigation ul li {
margin: 0 15px;
}
.navigation ul li a {
text-decoration: none;
color: white;
font-size: 16px;
transition: color 0.3s;
}
.navigation ul li a:hover {
color: grey;
}
.menu-toggle {
display: none;
font-size: 24px;
cursor: pointer;
}
.section {
padding: 100px 20px;
text-align: center;
}
.section h1, .section h2 {
font-size: 36px;
margin-bottom: 20px;
}
.section p {
font-size: 18px;
max-width: 800px;
margin: 0 auto;
}
.portfolio {
display: flex;
justify-content: center;
gap: 50px;
margin-top: 20px;
}
.item h3 {
font-size: 24px;
margin-bottom: 10px;
}
.footer {
text-align: center;
padding: 20px;
background: black;
border-top: 1px solid white;
}