/* Definições básicas de estilo */
body {
background-color: indigo;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
/* Estilizando o cabeçalho */
header {
padding: 20px;
font-size: 24px;
font-weight: bold;
}
/* Estilizando os links */
a {
color: yellow;
text-decoration: none;
font-weight: bold;
margin: 10px;
}
a:hover {
color: lightblue;
text-decoration: underline;
}
/* Estilizando a imagem */
img {
width: 150px;
border-radius: 50%;
margin-top: 20px;
display: block;
margin-left: auto;
margin-right: auto;
}
/* Estilizando os botões */
button {
background-color: yellow;
color: indigo;
border: none;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
margin: 10px;
}
button:hover {
background-color: lightblue;
color: white;
}