Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
/* Header Styling */
header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin-bottom: 10px;
}
header nav ul {
list-style: none;
}
header nav ul li {
display: inline;
margin: 0 15px;
}
header nav ul li a {
color: #fff;
text-decoration: none;
}
/* About Section Styling */
#about {
background-color: #fff;
padding: 40px 0;
text-align: center;
}
#about h2 {
margin-bottom: 20px;
}
#about p {
font-size: 1.2em;
max-width: 600px;
margin: 0 auto;
}
/* Contact Section Styling */
#contact {
background-color: #f9f9f9;
padding: 40px 0;
text-align: center;
}
#contact h2 {
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
form label {
margin-bottom: 10px;
}
form input, form textarea {
padding: 10px;
margin-bottom: 20px;
width: 300px;
max-width: 100%;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
padding: 10px 20px;
border: none;
background-color: #333;
color: white;
font-size: 1em;
cursor: pointer;
border-radius: 5px;
}
form button:hover {
background-color: #555;
}
/* Footer Styling */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}