:root {
    --dark-gray: #4F4F4F;
    --rich-black: #010203;
    --dark-blue: #1B4A79;
    --yellow: #FFF838;
    --light-orange: #FFC038;
    --red: FF0000;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
a{
    color: var(--light-orange);
}
a:hover{
    color:var(--dark-blue);
    text-decoration: none;
}

nav > div>div> ul > li >a{
    color: var(--yellow)!important; 
}

footer {
    background-color:var(--dark-gray);
    color:var(--yellow);
}

.logo{
    width: 4vw;
}

.navbar-light{
    background-color: var(--dark-gray) !important;
}

.lds-ring{
    color:var(--light-orange)
}

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid currentColor;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: currentColor transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.roll-for-stealth{
    display: none;
}

.mainButton{
    background-color: var(--dark-gray);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 100%;
  height: 100%; */
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content a {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  color: #FFC038;
  text-shadow: 0px 0px 10px #FFC03850, 0px 0px 20px #FFC03850;
  margin: 3px;
  transition: ease 0.3s;
}
.content a::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #FFC038;
  transform: perspective(10px) rotateX(10deg) scale(1, 0.2);
  filter: blur(1em);
  opacity: 0.5;
}
.content a:hover{
  color: #fff;
  text-shadow: 0px 0px 10px #00c2cb, 0px 0px 20px #00c2cb;
}
.content a:hover::before{
  opacity: 1;
  background: #00c2cb;
}

.cloudShape{
    height: 180px;
    aspect-ratio: 1.8;
    --g:radial-gradient(50% 50%, #000 98%, #0000) no-repeat;
    mask: var(--g) 100% 100%/30% 60%, var(--g) 70% 0/50% 100%, var(--g) 0 100%/36% 68%,var(--g) 27% 18%/26% 40%,linear-gradient(#000 0 0) bottom/67% 58% no-repeat;
    background: var(--dark-gray);
    z-index: -100;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}