@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    background-color: rgb(255, 254, 242);
    padding: 0;
    font-family: 'Source Serif Pro', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

article {
    width: 100%;
    padding: 15px;
    max-width: 600px;
    color: #544200;
    margin-bottom: 20px;
}

h1 {
    font-weight: 700;
    margin: 0;
}

article p {
    text-align: justify;
}

.data {
    text-align: right;
    border-bottom: 1px solid #54420020;
    padding-bottom: 5px;
}

.listaImagem {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.listaImagem img {
    width: calc(50% - 15px);
    padding: 5px;
    border: 1px solid #544200;
    filter: sepia(0.5);
    object-fit: cover;
    height: 300px;
}

.listaMusica iframe {
    margin: 5px 0;
}

.botoes {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
}

.botoes a {
    text-decoration: none;
    color: #ffffff;
    margin: 10px;
    background-color: #b64900;
    padding: 10px 30px;
    border-radius: 5px;
    transition: 0.5s all;
}

.botoes a:hover {
    background-color: #000000;
}

hr {
    border-color: #544200;
}