body {
  background: #000000; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #212529,
    #000000
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #212529,
    #000000
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

::-moz-selection {
  /* Code for Firefox */
  color: #2c3136;
  background: #ffb818;
}

::selection {
  color: #2c3136;
  background: #ffb818;
}

h3 {
  color: goldenrod;
}

.display-6 {
  font-size: 32px;
  width: 25vw;
}

.p,
.h4,
.fs-5,
.fs-4,
.fw-light {
  color: whitesmoke;
}

b {
  color: aqua;
}
.h6,
.h1 {
  color: #2c3136;
}

.btn {
  background: #2c3136;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home {
  height: 100vh;
  position: relative;
}

video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.bg-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.home-content {
  width: 600px;
  margin: 0 auto;
  position: relative;
  top: 150px;
  color: lightsteelblue;
  z-index: 3;
}

.home-content h1 {
  font-family: "Buda", cursive;
  text-align: center;
  text-transform: uppercase;
  font-size: 85px;
  line-height: 1.1;
}

.middle-line {
  height: 100px;
  width: 2px;
  background: #ffb818;
  margin: 40px auto;
}

.home-content a {
  text-align: center;
  display: block;
  font-size: 20px;
  width: 39%;
  box-shadow: 0px 0px 26px goldenrod;
  border: 2px solid whitesmoke;
  border-radius: 100px;
  background: transparent;
  /* color: #2c3136; */
  margin: 10px auto 0;
  padding: 16px 30px;
  cursor: pointer;
}

/* Media Queries for Responsive Design */

@media (max-width: 768px) {
  .home-content {
    width: 80%;
    top: 50%;
    transform: translateY(-50%);
  }

  .home-content h1 {
    font-size: 60px;
  }

  .middle-line {
    height: 150px;
  }

  .home-content button {
    font-size: 18px;
    margin: 30px auto 0;
  }
}

@media (min-width: 280px) and (max-width: 480px) {
  .home-content {
    width: 90%;
    top: 50%;
    transform: translateY(-50%);
  }

  .home-content h1 {
    font-size: 45px;
  }

  .middle-line {
    height: 22vh;
  }

  .home-content a {
    font-size: 16px;
    margin: 20px auto 0;
  }
}
