body {
  background-color: #fefffc;
  color: #050506;
  font-family: "Georgia", serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

h2 {
  text-align:center;
}

h3 {
  text-align:center;
}

.container {
  max-width: 50em;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.links {
  text-align: center;
}

.name {
  text-align: center;
}

.pic {
  padding-top: 10px;
}

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

.bits {
}

img {
  max-width: 100%;
  height: auto;
}

#face {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

#class,
#ppo_mol_ov,
#wallpaper {
  max-width: 90%;
  max-height: 300px;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  #face {
    width: 150px;
    height: 150px;
  }
}

/* Horizontal Rules */
hr {
  width: 100%;
  border: none;
  height: 1px;
  background-color: #050506;  /* Match your text color */
  margin: 2rem 0;  /* Add some vertical spacing */
}

/* Attributions Footer */
.attributions {
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 0.8em;
  color: #666;
  text-align: center;
}

.attributions a {
  color: inherit;
}