Created
March 19, 2025 22:04
-
-
Save douglasabnovato/5a8c2a8588037127ba7c07805a56e42c to your computer and use it in GitHub Desktop.
Estrutura básica de css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: 'Montserrat', sans-serif; | |
background-color: #f2f2f2; | |
} | |
header { | |
background-color: #009933; /* Verde Brasil */ | |
color: white; | |
text-align: center; | |
padding: 20px; | |
} | |
#hero { | |
background-image: url('campo-de-futebol.jpg'); | |
background-size: cover; | |
height: 500px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment