body{
  height: 100vh;
  margin:0;
  overflow: hidden;
  font-family: 'Be Vietnam Pro', sans-serif;
}
#blogpage{
  height: 100%;
  overflow-y: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  padding: 0 15px;
}
.navbtns{
  display: flex;
  justify-content: center;
  margin: 0 10px;
  align-items: center;
}
.navbtns span{
    margin: 0 10px;
    font-size: large;
}
.navbtns button{
  padding: 10px 14px;
  border-width: 0;
  border-radius: 6px;
  font-size: medium;
}

.hang-right{
    align-self: self-end;
    margin-left: 0;
    margin-right: 20px;
}
.post{
    background-color: #d6d6d6;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    width: 40vw;
}
.post .media-wrapper{
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
}
.post .media-wrapper > *{
    position: absolute;
}
.post .media-wrapper .navarrow{
  top: 50%;
  transform: translate(0,-50%);
  padding: 10px 5px;
  width: 4%;
  background-color: lightgray;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.post .media-wrapper > .left{
    
    transform: translateY(-50%);
}
.post .media-wrapper > .right{
    right: 0;
    transform: translateY(-50%) rotate(180deg)
}
.post .profile_box{
    align-items: center;
    background-color: rgb(236, 236, 236);
    display: flex;
}
.post .profile_box img{
    height: 35px;
    margin: 5px;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
}
.post .profile_box p{
    font-size: medium;
    margin-left: 5px;
    font-weight: 600;
}
.post p.desc{
    font-size: medium;
    white-space: normal;
    padding: 10px 10px 0 10px;
    margin: 0;
}
.post p.date{
    font-size: medium;
    color: rgb(104, 104, 104);
    text-align: right;
    margin: 5px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post .media-wrapper .media{
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
}
.post .media-wrapper .playbutton{
    width: 20%;
    object-fit: cover;
    height: 20%;
    position: absolute;
    margin: 40%;
    pointer-events: none;
}