/* Estilos gerais */
body {
    background-image: url('img/background.jpg');
    background-size: cover; /* Isso ajustará a imagem ao tamanho da janela do navegador */
    background-repeat: no-repeat; /* Isso impede que a imagem seja repetida */
    background-attachment: fixed; /* Isso mantém a imagem de fundo fixa enquanto a página rola */
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 10px;
    color: #fff;
}

header {
    margin-bottom: 100px;
    color: #fff;
    text-align: center;
    
}

header h1 {
    margin: 0;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Estilos para cada resumo de live */
.live-summary {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}

.live-summary h2 {
    font-size: 1.5rem;
    margin-top: 0;
}

.live-summary p {
    margin: 5px 0;
}

.live-summary a {
    text-decoration: none;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    margin-top: 10px;
}

.live-summary a:hover {
    background-color: #555;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0,1rem;
    }