test2
/* Reset some default margins */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Full-width section styling */
.full-width-section {
width: 100vw;
background-color: #28a745; /* Green background */
padding: 40px 0;
text-align: center;
}
/* Text styling */
.hero-text {
color: white;
font-family: Arial, sans-serif;
}
.hero-text h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.hero-text p {
font-size: 1.25rem;
}
/* Responsive design */
@media (max-width: 768px) {
.hero-text h1 {
font-size: 2rem;
}
.hero-text p {
font-size: 1rem;
}
}