Files
week1-day3-css/style.css
2026-03-26 11:31:19 +00:00

42 lines
435 B
CSS

body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 20px;
}
body {
max-width: 600px;
margin: auto;
}
h1 {
color: #2c3e50;
text-align: center;
}
h2 {
color: #34495e;
}
p {
font-size: 16px;
}
ul {
background: white;
padding: 10px;
border-radius: 8px;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
color: red;
}
hr {
margin-top: 20px;
}