body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  .carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
      height: auto !important;
  }

  .body .container {
    padding: 0 !important;
  }

@media (min-width: 1200px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.align-self-end {
  -ms-flex-item-align: end!important;
  align-self: flex-end!important;
}
.flex-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}

.btn-outline-success { 
  border: 1px solid green !important;
}

.hash-tag {
    left: 10%;
    margin-top: 50px;
}
.hash-tag span {
    background-color: #9ecd9e;
    color: black;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 0 5px;
}
.gray {
    color: #ccc;
}

/* Dropdown Button */
.dropbtn {
  background-color: unset;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  text-decoration: none;
  background-color: #9ecd9e;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
    