html,
body {
  background-color: #191716;
  color: #fafafa;
  height: 100%;
}

a {
  text-decoration: none !important;
}

#jumbo {
  background-image: linear-gradient(
    to right,
    rgba(255, 217, 0, 0.75),
    rgba(255, 0, 0, 0.75),
    rgba(128, 0, 128, 0.75)
  );
  border-bottom: groove black;
}

#options-dropdown {
  background-color: white;
  background-image: linear-gradient(
    to right,
    rgba(255, 215, 0, 0.75),
    rgba(255, 0, 0, 0.75),
    rgba(128, 0, 128, 0.75)
  );
  color: black;
  border-bottom: groove black;
}

#options {
  background-color: white;
  background-image: linear-gradient(
    to right,
    rgba(255, 215, 0, 0.75),
    rgba(255, 0, 0, 0.75),
    rgba(128, 0, 128, 0.75)
  );
  color: black;
  border-bottom: groove black;
}

#options > input {
  background-color: #191716 !important;
  color: #fafafa55 !important;
}

#options > select {
  background-color: #191716 !important;
  color: #fafafa55 !important;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.custom-file-label {
  background-color: gold !important;
}

.custom-file-label::after {
  background-color: gold !important;
}

.custom-file-label:hover {
  background-color: goldenrod !important;
  cursor: pointer;
}

#add-btn {
  background-color: red;
  color: inherit;
}

#add-btn:hover {
  background-color: darkred;
  cursor: pointer;
}

#publish-btn {
  background-color: purple;
  color: inherit;
}

#publish-btn:hover {
  background-color: darkblue;
  cursor: pointer;
}

@media (min-width: 34em) {
  .card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

.profile-link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  flex-direction: column;
  position: relative;
  font-family: Hack, monospace;
}
.profile-link-container div {
  margin: 0.25em;
}

.profile-link-button {
  font-family: Hack, monospace;
  background: #0f0f6d;
  color: #cccccc;
  cursor: pointer;
  font-size: 1.2em;
  padding: 1.5rem;
  border: 0;
  transition: all 0.5s;
  border-radius: 10px;
  width: auto;
  position: relative;
  display: inline-block;
  text-align: center;
}
.profile-link-button::after {
  content: "\2192";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  left: 85%;
  top: 31%;
  right: 5%;
  bottom: 0;
  opacity: 0;
}
.profile-link-button:hover {
  background: #2b2b99;
  color: #ffffff;
  transition: all 0.5s;
  border-radius: 10px;
  box-shadow: 0px 6px 15px #0000ff61;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
}
.profile-link-button:hover::after {
  opacity: 1;
  transition: all 0.5s;
}
