
body {
    background-color: black;
    color: yellow;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    width: 80%;
    background-color: yellow;
    color: black;
    padding: 20px;
    border: 10px solid yellow;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
h1 {
    font-size: 2.5em;
}
nav {
    margin-bottom: 20px;
}
nav a {
    color: rgb(0, 0, 0);
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
}
.quote {
    background-color: yellow;
    color: black;
    padding: 20px;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}
.content {
    background-color: black;
    color: yellow;
    padding: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid yellow;
    padding: 10px;
    text-align: left;
}

img {
    width: 50px;
}
