* {
  box-sizing: border-box;
}

@font-face {
  font-family: Vent;
  src: url("../fonts/ventfont.ttf");
}

@font-face {
  font-family: Vent;
  src: url("../fonts/ventfontbold.ttf");
  font-style: bold;
  font-weight: bold;
}

body {
  background-color: white;
  font-family: Vent;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-size: 1rem;
}

.breadcrumbs {
  font-family: monospace;
  margin-top: 1rem;
  display: block;
  text-align: center;
}

.breadcrumbs .current-page {
  font-weight: bold;
  color: #D22B74;
}

.post {
  max-width: 700px;
  border-left: 5px solid #D22B74;
  border-bottom: 1px solid #c6c7c7;
  padding: 1rem;
  margin: 0 auto;
  justify-content: center;
}

.post-image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-image img {
  max-width: 45%;
  height: 100%;
}

.reactions {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  color: #D22B74;
  padding: 0;
}

.reactions li {
  text-align: center;
  width: 50px;
  height: 30px;
  font-size: 0.75rem;
  border: solid 1px #D22B74;
  padding: 5px;
  transition: background-color 500ms;
}

.reactions li:hover {
  background-color: #D22B74;
  color: white;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  gap: 1rem;
}

.gallery li {
  width: 30%;
  list-style-type: none;
}

.gallery img {
  width: 100%;
  height: auto;
}

h1, h2, h3 {
  color: #D22B74;
}

a {
  color: #CA3172
}