:root {
	--prco: #138D75; /*blue-green*/
	--prco: #666666; /*blue-green*/
	--link: #666666; /*light grey*/
	--hovr: #999999; /*dark grey*/
}

/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    background: url('images/bg.jpg') repeat;
    background-size: auto;
}

/* Global container */
.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;  /* Centers the container */
    padding: 20px;
}

/* Header and Footer Styles */
header, footer {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
}

header {
    font-size: 1em;
}

footer {
    font-size: 0.9em;
}

/* Content Styles */
.content {
    padding: 20px;
    background-color: black;
    color: white;
}

hr {
    border: 0;
    border-top: 1px dashed var(--prco); /* Green dashed line */
    margin: 20px 0; /* Optional: Adds space above and below the line */
}

.half-line {
    width: 50%;     /* half the container’s width */
}

a {
            color: var(--prco);
            text-decoration: none;
	    font-weight: bold;
}

a:visited {
            color: var(--prco);
            text-decoration: none;
	    font-weight: bold;
}

a:hover {
            color: var(--hovr); /* Change color on hover */
            text-decoration: underline dotted;
	    font-weight: bold;
}

h1 {
    color: white;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

.classic-table {
    width: 100%;
    border: 0px solid #333;
    margin: 1rem 0;
    table-layout: fixed; /* columnas uniformes */
}
.classic-table th, .classic-table td {
    border: 0px solid #ddd;
    padding: .6rem .8rem;
    vertical-align: top;
    word-wrap: break-word;
}
.classic-table thead {
    background: #f6f8fa;
}
    
.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.author {
    font-weight: bold;
}
