body {
background: url('https://via.placeholder.com/1200x800') no-repeat center/cover; /* imagem de fundo */
padding: 20px;
font-family: Arial, sans-serif;
line-height: 15px; /* espaçamento entre linhas */
}


h1 {
font-family: 'Poppins', sans-serif; /* fonte do Google */
color: #fff;
text-shadow: 3px 3px 5px black; /* sombreamento */
}


p {
background: rgba(255, 255, 255, 0.7);
padding: 10px;
margin-bottom: 15px;
}


.fundo-diferente {
background: #ffe6a7; /* fundo diferente */
}


a {
color: red; /* todos os links vermelhos */
}


.link-azul {
color: blue !important; /* link azul */
}


.borda-direita {
border-right: 10px solid green; /* borda verde */
}


.borda-arredondada {
border-radius: 10px 10px 0 0; /* apenas cantos superiores */
box-shadow: 10px 10px 0 black; /* sombra preta sólida */
}