html {
  font-family: sans-serif;
}

h1 {
  margin-left: 5%;
}

#create_post {
  margin: 0;
}

form {
  height: 50vh;
  width: 90vw;
  margin: 0 auto;
}

form .form_container {
  display: flex;
  flex-direction: row;

  height: 100%;
  width: 100%;
} 

form .post_text #input_text{
  height: 100%;
  width: 55vw;
  border: #ccc solid 1vw;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  background-color: #99AAB0;
  border-radius: 5%;

  padding: 3% 3%;
}

form .post_images {
  width: 30vw;
  height: auto;
  background: #ccc;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5%;
}

form .post_images ol {
  padding-left: 0;
}

form .post_images li,
div > p {
  background: #eee;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  list-style-type: none;
  border: 1px solid black;
  font-size: calc(1vh + 10px);
}

form .post_images li {
  height: 7vh;
}

form .post_images li p {
  
  overflow: hidden;
}

form .post_images img {
  height: 64px;
  order: 1;
}

form .post_images p {
  line-height: 32px;
  padding-left: 10px;
}

form .post_images label,
form .post_images button {
  background-color: #7f9ccb;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px ridge black;
  font-size: 0.8rem;
  height: auto;
}

form .post_images label:hover,
form .post_images button:hover {
  background-color: #2d5ba3;
  color: white;
}

form .post_images label:active,
form .post_images button:active {
  background-color: #0d3f8f;
  color: white;
}

form .post_images input {
  opacity: 0;
}

