:root {
  /* Colors */
  --primary-accent: #8d9f75; 

}

.header {
    width:800px;
    margin: 20px auto;
}

.header header {
    font-size: 60px;
    text-align: center;
}

.nav-bar table {
    margin: 10px auto;
    width: auto;
}

td {
    padding: 0px 5px;
}

td a {
  text-decoration: none;
  color: var(--text-light);
}

td a:hover {
  color: orange;
}

.container {
    display: flex;
     justify-content: center;
    width: 800px;
    margin: auto;
}

.column {
    flex: 1;
    /* border: 1px solid #ccc; */
    margin: 10px;
    text-align: justify;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.column h2 {
    margin-left: 10px;
}

.column img {
    width: 300px;
    margin-left: 40px;
}

.column a {
    color: var(--text-light);
}

footer {
    position: absolute;
    margin-top: 150px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

footer .blinkies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .blinkies img {
    width: 150px;
}

@media (max-width: 800px) {
    .header {
        width:auto;
    }
    .container {
        flex-direction: column;
        width: auto;
    }
}
