body {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Crimson Text";
  src: url("./Crimson_Text/CrimsonText-Regular.ttf") format("truetype");
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-semibold {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: normal;
}

.crimson-text-bold {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

.crimson-text-regular-italic {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: italic;
}

.crimson-text-semibold-italic {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: italic;
}

.crimson-text-bold-italic {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: italic;
}

.about_text {
  font-size: 2rem;
  text-align: justify;
  margin: 10vw 10vw;
}

@media (max-width: 768px) {
  .about_text {
    font-size: 1.5rem;
    margin: 5vw 5vw;
  }
}

.bg_image {
  background-image: url("./potrait.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}

.menu {
  align-items: center;
  padding: 5vw 6vw;
  font-size: 0;
}

@media (max-width: 768px) {
  .menu {
    padding: 8vw 4vw;
  }
}

.back_link {
  text-decoration: none;
  color: black;
  background-color: white;
}

.back_link:hover {
  color: white;
  background-color: black;
}

.about_link {
  color: white;
  text-decoration: none;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .about_link {
    font-size: 2rem;
  }
}

.about_link:hover {
  color: black;
  background-color: white;
}

.post_link {
  color: white;
  text-decoration: none;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .post_link {
    font-size: 2rem;
  }
}

.post_link:hover {
  color: black;
  background-color: white;
}

.post_div {
  text-align: center;
  align-content: center;
  justify-content: center;
  font-size: 2rem;
}

.breadcrumb {
  text-align: left;
  padding: 20px;
  font-size: 1rem;
  color: #666;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: #000;
  text-decoration: underline;
}

.breadcrumb-current {
  color: #333;
  font-weight: bold;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px;
    font-size: 0.9rem;
  }
}

.post_img {
  width: 80%;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.post_img:not([src]) {
  opacity: 0.5;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite;
  min-height: 300px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.note {
  font-size: 24px;
  text-align: justify;
  width: 50%;
  margin: auto;
}

@media (max-width: 768px) {
  .note {
    font-size: 18px;
    width: 90%;
  }
}

.icons {
  position: absolute;
  bottom: 25px;
  right: 50px;
}

@media (max-width: 768px) {
  .icons {
    right: 25px;
    bottom: 15px;
  }
}

.icon {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .icon {
    width: 60px;
    height: 60px;
  }
}

svg {
  color: white;
}

svg:hover {
  color: black;
  background-color: white;
}
