body {
    /* background: #231f20; */
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arials, sans;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    width: 95%;
}

h2 {
    font-family: "Arial";
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 3rem;
    line-height: 0.75;
}

span {
    margin-top: 10px;
    color: #0a8e62;
    display: block;
}

section{
    z-index: 9999;
}

span:not(.light) {
    opacity: 0;
    -webkit-animation: flashText 1s ease-out alternate infinite;
    animation: flashText 1s ease-out alternate infinite;
}

span.light {
    position: relative;
    display: inline-block;
}

span.light:before {
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 120%;
    background: #fff;
    filter: blur(10px);
    content: "";
    opacity: 0;
    -webkit-animation: flash 1s ease-out alternate infinite;
    animation: flash 1s ease-out alternate infinite;
}

@-webkit-keyframes flash {
    to {
        opacity: 1;
    }
}

@keyframes flash {
    to {
        opacity: 1;
    }
}

@-webkit-keyframes flashText {
    to {
        opacity: 0.15;
    }
}

@keyframes flashText {
    to {
        opacity: 0.15;
    }
}


@media only screen and (min-width : 768px){
    .btns{
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        top: 40%;
        position: absolute;
    }
}

@media only screen and (max-width : 767px){
    .btns{
        position: absolute;
        display: block;
        top: 54%;
    }
    body{
        overflow: hidden;
    }

    #inserthere, #parkinglot{
        overflow-y: scroll;
        font-size: 10px;
    }

    canvas{
        height: 50px !important;
        bottom: -100px;
    }
}

.btn {
    display: inline-block;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: rgba(223, 190, 106, 0.7);
    border-radius: 0;
    padding: 18px 80px 20px;
    transition: all 0.7s ease-out;
    background: linear-gradient(270deg, rgba(223, 190, 106, 0.8), rgba(146, 111, 52, 0.8), rgba(34, 34, 34, 0), rgba(34, 34, 34, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    text-decoration: none;
    margin: 0.625rem;
    border: none;
    border: 1px solid rgba(223, 190, 106, 0.3);
}

.btn:hover {
    color: #fff;
    border: 1px solid rgba(223, 190, 106, 0);
    color: white;
    background-position: 99% 50%;
}

article {
    height: 100vh;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(calc(50vw - 50%), -50%);
    color: transparent;
    background-color: transparent;
    z-index: 1000;
}

footer a {
    float: left;
    text-align: center;
    margin-left: 20px;
    font-size: 9px;
    color: white;
    z-index: 1000;
}

canvas {
    z-index: 999;
    position: absolute;
    bottom: 0;
    pointer-events: none;
    width: 100%;
    height: 20vh;
    color: transparent;
    background-color: transparent;
}

/*    
   label {
    font-size: 22px;
    font-weight: bold;
    display: block;
  }
  
  input {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
  } */

  #inserthere > div{
    position: relative;
    float: left;
    margin-left: 50px;
  }

  #parkinglot > div{
    position: relative;
    float: left;
    margin-left: 50px;
  }