.splash-screen {
  background-image: url("../img/splash.jpg");
  height: 300px; /* You must set a specified height */
  background-position: center left; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  border-bottom: 1px solid white;
}

.splash-screen a {
  color: #090909;
  text-decoration: none;
}
.splash-screen a:hover {
  color : skyblue;
}

.dropdown-menu a:hover {
  background-color: orange;
}

.featurette-divider {
  margin: 3rem 0;
  border-color: #b0b0b0;
}

.featurette-heading {
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05rem;
}

.text-skyblue {
  color: skyblue;
}

.text-orange {
  color: orange;
}

.blog-p {
  color: skyblue;
  font-size: 24px;
  font-weight: bold;
}

.enfasi {
  color: whitesmoke;
  font-size: 20px;
  font-weight: normal;
  border-left: 6px solid skyblue;
  padding: 15px;
}

.text-gradient {
  background: linear-gradient(to right, rgb(156, 47, 255), rgb(233, 88, 210) 52%, rgb(252, 69, 216));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-2 {
  background: linear-gradient(to right, rgb(250, 250, 250), rgb(250, 250, 250) 52%, rgb(103, 81, 248));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-question {
  font-weight: bold;
  letter-spacing: 1px;
}

.faq-answer {
  font-weight: normal;
  color: black;
  letter-spacing: 1px;
}

.container {
  max-width: 960px;
}

.transaction {
  padding-bottom: 10px;
}

.mybottom a {
  color: #999;
  text-decoration: none;
}
.mybottom a:hover {
  color :white;
}

/*
 * Custom translucent site header
 */

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Extra utilities
 */

.flex-equal > * {
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    flex: 1;
  }
}

.overflow-hidden { overflow: hidden; }