body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #242424;
}

header {
    background-color: #020000;
    padding: 20px;
}


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

.opinions-column {
    background-color: #c7c6c6;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.opinion {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.opinion:last-child {
    border-bottom: none;
}

h1 {text-align:center;}
h2 {
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    margin-bottom: 10px;
}

p {
    margin: 0;
}

nav {
    display: flex;
    justify-content: center; /* Horizontally center the navigation links */
    align-items: center; /* Vertically center the navigation links */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}