
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&family=Kalam:wght@300&display=swap');

body {
    font-family:"Kalam";
    background-color: #10083bab;
    color: rgb(255, 255, 255);
    font-weight: bolder;
}

#bnr {

    border: 9px double rgb(255, 169, 71);
    margin: 0 auto;
    height: auto;
    font-family: 'Jost', sans-serif;
    color: rgb(255, 255, 255);
    justify-content: center;
    text-align: center;
    width: auto;
}

#container {
    /* background-color: rgb(0, 0, 0); */
    border: 4px solid rgb(255, 136, 0);
    margin: 0 auto;
    height: auto;
    justify-content: center;
    padding: 100px 50px;
    text-align: center;
    width: auto;
}


#output {
    margin: 0 auto;
    font-size: 15px;
    /* background-color: rgba(255, 255, 255, 0.4); */
    color: rgb(255, 255, 255);
    font-family: 'Kalam';
    justify-content: center;
}


/* FOR ANIMATION: REFER ANIMISTA- THE ON-DEMAND CSS ANIM. LIB. */
.slide-out-elliptic-top-fwd{animation:slide-out-elliptic-top-fwd 1s cubic-bezier(.55,.085,.68,.53) alternate-reverse both}
@keyframes slide-out-elliptic-top-fwd{0%{transform:translateY(0) rotateX(0) scale(1);transform-origin:50% -500px;opacity:1}100%{transform:translateY(-600px) rotateX(20deg) scale(6);transform-origin:50% 200%;opacity:0}}

.slide-top{animation:slide-top .5s cubic-bezier(.25,.46,.45,.94)both}
@keyframes slide-top{0%{transform:translateY(0)}100%{transform:translateY(-100px)}}



#circle-btn {
  width: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  font-family: 'Jost';
  border: double 9px rgb(255, 136, 0);
  background-color: #ffa6004c;
  color: rgb(255, 255, 255);
  
  /* Centers content (text or icon) perfectly */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}


.heartbeat{animation:heartbeat 2s ease-in-out infinite both}

@keyframes heartbeat{from{transform:scale(1);transform-origin:center center;animation-timing-function:ease-out}10%{transform:scale(.91);animation-timing-function:ease-in}17%{transform:scale(.98);animation-timing-function:ease-out}33%{transform:scale(.87);animation-timing-function:ease-in}45%{transform:scale(1);animation-timing-function:ease-out}}

.shadow-drop-2-center{animation:shadow-drop-2-center 2.4s cubic-bezier(.25,.46,.45,.94) infinite both}
@keyframes shadow-drop-2-center{0%{transform:translateZ(0);box-shadow:0 0 0 0 transparent}100%{transform:translateZ(50px);box-shadow:0 0 20px 0 rgb(255, 123, 0)}}
