Skip to content

Instantly share code, notes, and snippets.

@douglasabnovato
Created March 19, 2025 22:04
Show Gist options
  • Save douglasabnovato/5a8c2a8588037127ba7c07805a56e42c to your computer and use it in GitHub Desktop.
Save douglasabnovato/5a8c2a8588037127ba7c07805a56e42c to your computer and use it in GitHub Desktop.
Estrutura básica de css
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