#post-container {
  height: 300px;
}

* {
  box-sizing: border-box;
}

/* Style the search field */
form.example input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  height: 50px;
  background: #f1f1f1;
  position: relative;
}

/* Style the submit button */
form.example button {
  float: left;
  width: 20%;
  height: 50px;
  padding: 0;
  background: #2196F3;
  color: white;
  font-size: 20px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

form.example button:hover {
  background: #0b7dda;
}

/* Clear floats */
form.example::after {
  content: "";
  clear: both;
  display: table;
}

.btnblue {
  background-color: white;
  color: #008CBA;
  border: 2px solid #008CBA;
}

.btnblue:hover {
  background-color: #008CBA;
  color: white;
}

.fa {
  padding: 10px;
  font-size: 26px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 2px 2px;
  border-radius: 30%;
}

.fa:hover {
    opacity: 0.75;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-whatsapp {
  background: #25D366;
  color: white;
}

.btn_remove {
  border: 2px solid black;
  background-color: white;
  color: black;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
}

/* Gray */
.default {
  border-color: #e7e7e7;
  color: black;
  width: 10%;
}


.container {
  position: relative;
  max-width: 100%; /* Maximum width */
  margin: 0 auto; /* Center it */
}

.content {
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */
  width: 100%; /* Full width */
  padding: 20px; /* Some padding */
}

pre{
    background-color: #002b36;
    font-family: monospace;
    color: #f1f1f1;
    display: block;
    border: none;
    box-shadow: 0 0 6px 2px rgba(28, 31, 47, 0.1);
    padding: 2em;
    white-space: pre-wrap;
    overflow-x: auto;
}
