* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height:100vh;
  display: flex;
  align-items:center;
  justify-content:center;
  background-color: black;
  font-family: "Roboto", sans-serif;
  background: url(../images/black-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.container {
  /*position: relative;
  overflow: hidden;
  width:100%;*/
  height:100%;
}

p {
  position: absolute;
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 1;
  animation: fade ease-in-out infinite;
}

@keyframes fade {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.custom-btn {
    width: max-content;
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 30px;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
    display: flex;
    margin: 0px auto;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
.btn-10 {
  background: rgb(22,9,240);
  background: linear-gradient(0deg, rgb(231 186 88) 0%, rgb(177 135 63) 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.btn-10:after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-transform: scale(.1);
  transform: scale(.1);
}
.btn-10:hover {
  color: #fff;
  border: none;
  background: transparent;
  text-decoration: none;
}
.btn-10:hover:after {
  background: rgb(0,3,255);
  background: linear-gradient(0deg, rgb(231 186 88) 0%, rgb(177 135 63) 100%);
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 991px) {
    body {
        background-size: 100% 100%;
    }
}

/*p.active {
     position: fixed;
    right: 100px;
    top: 400px !important;
    background: #d1a54e;
    color: black !important;
    z-index: 99;
    justify-content: center;
    display: flex;
}*/

/*.active {
    box-shadow: 21px 21px 14px -9px rgba(0,0,0,1);
    border: 2px solid;
    transform: translate(20vw, -35vh) scale(1.5);
    opacity: 1 !important;
    transition: all 1s ease-in-out;
    height: 80px;
    width: 80px;
    align-items: center;
    margin: 10px;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    border-radius: 4px;
    opacity: 1 !important;
}*/