/* Reset some browser defaults */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: 'Press Start 2P', sans-serif;
  background-color: /*#2b2b2b*/#000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@font-face {
  font-family: 'Press Start 2P';
  src: url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
}

.container {
  text-align: center;
  position: relative;
  width: 100%;
}

.text {
    color: #00ffff;
    text-shadow: 2px 2px 0 #048db2, -2px -2px 0 #048db2, 2px -2px 0 #048db2, -2px 2px 0 #048db2;
    font-size: 24px;
}

.top-text {
  position: absolute;
  top: 10%;
  width: 100%;
}

.bottom-text {
  position: absolute;
  bottom: 10%;
  width: 100%;
}

.fire-pit {
    position: relative;
    display: inline-block;
    margin: 9rem 0 4rem;
}

.pit {
  width: 150px;
  height: 50px;
  background: #8b4513;
  border: 4px solid #5a3310;
  border-radius: 50%;
  margin: 0 auto;
}

.flame {
  position: absolute;
  width: 50px;
  height: 80px;
  background: radial-gradient(circle, #ff4500 0%, #ff6347 50%, transparent 70%);
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  animation: flicker 0.3s infinite alternate;
}

.flame.small {
  width: 30px;
  height: 50px;
  top: -60px;
  background: radial-gradient(circle, #ff6347 0%, #ffa07a 50%, transparent 70%);
  animation: flicker 0.25s infinite alternate;
}

.flame.tiny {
  width: 15px;
  height: 25px;
  top: -45px;
  background: radial-gradient(circle, #ffa07a 0%, #ffdab9 50%, transparent 70%);
  animation: flicker 0.2s infinite alternate;
}


/* HEADER */

.header .row {
  display: flex;
  align-items: stretch;
}

.header {
    position: absolute;
    top: 0;
    width: 50%;
}

.header .left,
.header .right {
  flex: 0 0 auto;
}

.header .left img,
.header .right img {
  display: block;
  width: 100%;
  height: auto;
}

.header .ctr {
  flex: 1;
}

.header .ctr img {
  display: block;
  width: 100%;
  height: 102px;
}

/* HEADER END */

/* FOOTER */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 51px;
    background-image: url(../img/footerbg.jpg);
    background-repeat: repeat-x;
    background-position: center bottom;
}


 /* FOOTER END */

@keyframes flicker {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.8;
  }
}
