body {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    background-image: url("bg.jpg");
}








/* button csss */
.glow-on-hover {
    
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #C5B358;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    margin-top: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* submit css */
.input {
    /* margin-top: 50px; */
    font-family: 'Open Sans';
    width: 220px; /* Set the width to 220px */
    /* height: 50px; */ /* Remove this line to let the height adjust automatically based on content */
    font-size: 10px;
    border: 3px solid #000;
    border-radius: 5px;
    /* height: 50px; */ /* Remove this line */
    line-height: normal;
    padding-top: 50px;
    color: #D6BD68;
    font-weight: bolder;
    display: block;
    /* width: 100%; */ /* Remove this line */
    box-sizing: border-box;
    user-select: auto;
    font-size: 16px;
    padding: 0 6px;
    margin-top: 200px;
    padding-bottom: 20px;
    padding-left: 12px;
    margin-bottom: 10px;
}

.input:focus {
    border: 3px solid #e8e810;
}



/* headfont  */
  :root {
    --gold: #ffb338;
    --light-shadow: #77571d;
    --dark-shadow: #3e2904;
  }
  /* body {

  } */
  .wrapper {
    /* background: radial-gradient(#272727, #1b1b1b); */
    display: grid;
    grid-template-areas: 'overlap';
    place-content: center;
    text-transform: uppercase;
    /* height: 100vh; */
  }
  .wrapper > div {
    margin-top: 60px;
    background-clip: text;  
    -webkit-background-clip: text;
    color: #363833;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: clamp(2em, 12vw, 8rem);
    grid-area: overlap;
    letter-spacing: 1px;
    -webkit-text-stroke: 4px transparent;
    transform: scaleY(0.9) ;
    transform: skewY(-35deg);
  }
  div.bg {
    background-image: repeating-linear-gradient( 105deg, 
      var(--gold) 0% , 
      var(--dark-shadow) 5%,
      var(--gold) 12%);
    color: transparent;
    filter: drop-shadow(5px 15px 15px black);
    transform: scaleY(1.05);
    transform-origin: top;
  }
  div.fg{
    background-image: repeating-linear-gradient( 5deg,  
      var(--gold) 0% , 
      var(--light-shadow) 23%, 
      var(--gold) 31%);
    color: #1e2127;
    transform: scale(1);
  }



  /* header */
