* {
    /* background-color: rgb(45, 73, 90); */
    font-size: 22px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* color: white; */
}

:root {
    --dark-green: #568857;
    --light-green: #e8f9ed;
    --max-width: 900px;
  }

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0px 10px;
}

header {
    max-width: var(--max-width);
    width: 100%;
    margin: auto;
}

main {
    max-width: var(--max-width);
    width: 100%;
    margin: auto;
    flex:1;
}

.player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    /* max-height: 360px; */
  }
  
  .player-container #thumbnail {
    width: 100%;
    max-width: 640px;
    height: 360px;
    /* padding-top: 56.25%;  */
    /* max-width: var(--max-width); */
    cursor: pointer;
    background-size: cover;
    background-position: center;
  }
  
  .player-container #player {
    display: none;
    width: 100%;
    max-width: var(--max-width);
    max-height: 360px;
  }

  #playBtn, #replayBtn {
    width: 100%;
    min-height: 70px;
    margin: 10px 0px;
    background-color: white;
    color: var(--dark-green);
    /* border: 1px solid;
    border-radius: 7px; */
    border: none;
    box-shadow: var(--light-green) 0px 0px 0px 5px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    font-weight: bold;
    cursor: pointer;

  }

  .word-suggestion {
    margin: 5px;
    padding: 5px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    background-color: var(--light-green);
    border-radius: 3px;
  }

  .post-item {
    margin: 5px;
    padding: 5px;
    background-color: var(--light-green);
    border-radius: 3px;
  }
  
  .post-item a {
    text-decoration: none;
    color: black;
  }

  .post-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 5px;
   
  }

  .post-footer {
    padding: 40px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  footer p {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: gray;
    font-size: 20px;
    padding: 40px 0px 20px;
    
  }

  .header-links {
    list-style: none;
    margin: 0px;
    padding: 15px 0px 20px;
    display: flex;
    justify-content: space-between;
  }

  .header-links__home {
    font-weight: bold;
    font-size: larger;
    text-decoration: none;
    color: var(--dark-green);
  }

  .header-links__about {
    text-decoration: none;
    color: var(--dark-green);
    margin-right: 10px;
  }

  .prepost__channel-name {
    background-color: rgb(233 240 249);
    padding: 2px;
    border-radius: 3px;
    display: inline-block;
  }

  .small-font {
    font-size: 20px;
  }

h1, h2, h3, h4 {
    color: rgb(111, 111, 111);
    font-size: larger;
}


@media only screen and (max-width: 767px) {
    .post__synonyms {
    height: 70px;
    display: block;
  }
  .post__title {
    height: 150px;
    justify-content: center;
  }
  } 

  .post__title {
    font-size:55px;
    font-weight: bold;

    font-family: serif;
    color:rgb(60 73 60);
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 10px 0 50px;
  }

  .post-footer__back {
    text-decoration: none;
    color: var(--dark-green);
  }

  .prepost__source {
    color: gray;
    font-size: 20px;
  }

  