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

Style Css

The document provides CSS styles for a webpage layout, including styles for the body, header, hero section, call-to-action button, and footer. It specifies font, colors, padding, and alignment for various elements to create a visually appealing design. Key features include a responsive header, a prominent hero section, and a styled footer with navigation links.

Uploaded by

qq66yt6ydq
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)
4 views2 pages

Style Css

The document provides CSS styles for a webpage layout, including styles for the body, header, hero section, call-to-action button, and footer. It specifies font, colors, padding, and alignment for various elements to create a visually appealing design. Key features include a responsive header, a prominent hero section, and a styled footer with navigation links.

Uploaded by

qq66yt6ydq
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

* {

margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', sans-serif;
background-color: #ffffff;
color: #111;
}

header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
background-color: #fff;
border-bottom: 2px solid #eee;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
width: 50px;
margin-right: 10px;
}

.lang-switch a {
margin-left: 10px;
font-size: 18px;
text-decoration: none;
}

.hero {
background-color: #006b3c;
color: white;
text-align: center;
padding: 80px 20px;
}

.hero h2 {
font-size: 32px;
margin-bottom: 20px;
}

.cta {
background-color: #fdd835;
color: black;
text-decoration: none;
padding: 15px 30px;
font-weight: bold;
border-radius: 5px;
display: inline-block;
}
footer {
border-top: 10px solid #ff0000;
border-bottom: 10px solid #ffcc00;
text-align: center;
padding: 20px 0;
}

.footer-nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
color: #333;
}

You might also like