@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

:root {
    --bgColor: #000000;
    --textColor: #000000;
    --linkColor: #3498db;
    --linkHoverColor: #1abc9c;
    --font: 'Roboto', sans-serif;
    --articleBgColor: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: url('./assets/site-bg-min.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--textColor);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

#articles {
    width: 60%;
    padding: 20px;
    background-color: var(--articleBgColor);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#articles h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--textColor);
}

#articles ul {
    list-style-type: none;
    padding: 0;
}

#articles li {
    margin-bottom: 20px; /* Espaço aumentado entre as linhas */
    font-size: 1rem;
    color: var(--textColor);
    line-height: 1.6; /* Altura da linha aumentada */
}

#articles a {
    color: var(--linkColor);
    text-decoration: none;
}

#articles a:hover {
    text-decoration: underline;
    color: var(--linkHoverColor);
}