* {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
body {
  margin: 0;
  padding: 0;
}

.body-container {
  padding-top: 10vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

#blog-body {
  height: 100vh;
}
.body-container .buttons {
  float: left;
  margin-top: 10px;
  margin-left: 10px;
}
.body-container .buttons .button {
  background-color: #151d5ca5;
  padding: 3px 10px 3px 5px;
  width: fit-content;
  float: left;
  margin-left: 4px;
}

.body-container .buttons .active {
  background-color: #151d5c;
  padding: 3px 10px 3px 5px;
  width: fit-content;
  float: left;
  margin-left: 4px;
}

.body-container .buttons a {
  text-decoration: none;
  color: white;
}

.blog-container {
  display: flex;
  flex-direction: row;
  width: 100vw;
}

.blog-content {
  display: flex;
  flex-direction: column;
  width: 70vw;
  padding: 2vh 3vw 2vh 5vw;
}

#main-blog-content {
  height: 60vh;
  a {
    text-decoration: none;
    color: black;
  }
}

.main-blog-image {
  display: flex;
  align-items: flex-end;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("./assets/slider/odaksan-1.webp");
  height: 100%;
}

.main-blog-text {
  height: 20%;
  padding: 5vh 5vw 5vh 5vw;
  background-color: rgba(0, 0, 0, 0.222);
  margin-bottom: 10px;
}
.right-blog-image {
  width: 25vw;
}

.blog-right-content {
  text-align: justify;
  width: 25vw;
  padding: 2vh 5vw 2vh 3vw;
  a {
    text-decoration: none;
    color: black;
  }
  img {
    width: 200px;
    height: auto;
  }
}

.blog-related-content {
  text-align: justify;
  width: 25vw;
  padding: 2vh 5vw 2vh 3vw;
  a {
    text-decoration: none;
    color: black;
  }
  img {
    width: 200px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    width: 100vw;
  }
  .blog-content {
    width: 90vw;
  }

  #blog-body {
    height: auto;
  }

  .blog-right-content {
    width: auto;
  }

  .right-blog-image {
    width: 100%;
    img {
      width: 95vw;
    }
  }

  .youtube-video .videowrapper {
    width: 100%;
    iframe {
      width: 100%;
    }
  }
  .blog-related-content {
    width: 90vw;
  }
}
