0% found this document useful (0 votes)
22 views2 pages

Css

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views2 pages

Css

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

body {

font-family: Arial, sans-serif;


background-color: #f0f8ff;
color: #333;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1200px;
text-align: center
}
h1, h2, h3 {
color: #114bae;
margin-bottom: 0.5em;
}
a {
text-decoration: none;
color: #b2c1b3;
}
header {
background-color: #4caf50;
color: white;
padding: 1em 0;
}
header .menu {
list-style: none;
display: flex;
justify-content: center;
gap: 1.5em;
}
header .menu li a {
color: white;
font-weight: bold;
transition: color 0.3s;
}
header .menu li a:hover {
color: #f0f8ff;
}
.intro {
text-align: center;
padding: 2em 0;
background-color: #e8f5e9;
}
.image-large {
display: block;
margin: 1em auto;
width: 80%;
border-radius: 10px;
}
.btn {
display: inline-block;
padding: 0.7em 1.5em;
background-color: #4caf50;
color: white;
border-radius: 5px;
margin-top: 1em;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #45a049;
}

.cards {
display: flex;
gap: 1.5em;
flex-wrap: wrap;
justify-content: center;
}
.card {
background: white;
width: 300px;
text-align: center;
padding: 1em;
}
.card img {
width: 100%;
}
.card h3 {
margin: 0.5em 0;
}

You might also like