body {
  background: #d9d9d9;
  color: #2d2d2d;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px;
}

header {
  width: 100%;
  max-width: 1000px;
}

content {
  max-width: 1000px;
  width: 100%;
}

footer {
  max-width: 1000px;
  width: 100%;
}

h1 {
  font-size: 60px;
  padding: 10px;
  margin: 10px;
}

h2 {
  font-size: 40px;
  padding: 10px;
}

h3 {
  font-size: 20px;
  padding: 10px;
}

p {
  margin: 5px;
}

/*removes the _fat_ styling from text for articles */
.article {
  font-weight: normal;
}

.small-description {
  font-size: 10px;
}

.dark-card {
  color: #cfcfcf;
  border-radius: 20px;
  padding: 20px;
  margin: 0px;
  background-image: radial-gradient(#d9d9d9 1px, transparent 2px);
  background-size: 200px 200px;
  background-color: #111111;
  max-width: 1000px;
}

.bright-card {
  background-color: #d9d9d9;
  color: #2d2d2d;
  border-radius: 20px;
  padding: 20px;
  margin: 0px;
  max-width: 1000px;
}

.hard-ltr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hard-ttb-flex {
  display: flex;
  flex-direction: column;
}

.flex-ltr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-ttb {
  flex-direction: column;
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.flex-grid-item {
  background-color: #ebebeb;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: 10px;
  min-width: 250px;
  min-height: 100px;
  margin: 2.5px;
  align-content: center;
  overflow: hidden;
}

.project-box {
  width: 250px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.character-img {
  width: 100%;
  height: 300px;
  /* set a fixed height */
  object-fit: cover;
  /* crops to fill, preserves aspect ratio */
  display: block;
  margin-top: auto;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  padding: 0px 10px;
  font-weight: 900;
  max-width: 1000px;
}

/* Style the header links */
.header a {
  float: left;
  color: #2d2d2d;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  font-size: 18px;
  line-height: 75px;
  border-radius: 4px;
}

.header-ltr {
  display: flex;
  align-items: center;
  height: 75px;
}

.logo {
  padding-right: 20px;
  width: 50px;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #d9d9d9;
  color: #111111;
}

/* Float the link section to the right */
.header-right {
  float: right;
  display: flex;
  height: 75px;
}

table {
  text-align: left;
}

th {
  padding-left: 10px;
  padding-right: 10px;
}

/* Style the footer links */
footer a {
  color: #2d2d2d;
  text-decoration: none;
}

/* Change the background color on mouse-over */
footer a:hover {
  text-decoration: none;
  color: #111111;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 600px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  .flex-ltr {
    display: block;
    float: none;
    overflow: hidden;
  }
}
