/* style.css */
body {
    background-color: #000; /* Fundo preto */
    color: #b11111; /* Texto branco */
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo horizontalmente */
    text-align: center; /* Centraliza o texto */
    margin: 0;
    padding: 20px;
}

img {
    max-width: 300px;
    border-radius: 50%; /* Deixa a imagem arredondada */
    border: 3px solid #d41313;
    margin-bottom: 20px;
}

h1, h2 {
    color: #ff0000; /* Vermelho para destaque, estilo visual comum do artista */
    text-transform: uppercase;
}

p, pre {
    max-width: 800px; /* Limita a largura para facilitar a leitura */
    line-height: 1.6;
    margin: 20px 0;
}

pre {
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap; /* Quebra as linhas automaticamente */
    word-wrap: break-word;
    background: #1a1a1a;
    padding: 20px;
    border-left: 5px solid #ff0000;
}

hr {
    width: 50%;
    border: 0;
    border-top: 1px solid #444;
    margin: 40px 0;
}