78 lines
931 B
CSS
78 lines
931 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
header {
|
|
background: #333;
|
|
color: #fff;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
nav ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
nav ul li {
|
|
display: inline;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
nav ul li a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.intro {
|
|
text-align: center;
|
|
padding: 40px;
|
|
background: #f4f4f4;
|
|
}
|
|
|
|
|
|
.features {
|
|
display: flex;
|
|
@media (max-width: 600px) {
|
|
flex-direction: column;
|
|
}
|
|
justify-content: space-around;
|
|
align-items: stretch;
|
|
padding: 20px;
|
|
gap: 20px;
|
|
}
|
|
|
|
.feature-item {
|
|
background: #fff;
|
|
flex: 1;
|
|
padding: 20px;
|
|
border: 1px solid #ddd;
|
|
width: 30%;
|
|
@media (max-width: 600px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 20px;
|
|
background: #333;
|
|
color: #fff;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
figcaption {
|
|
font-size: 0.75em;
|
|
}
|
|
|