/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Josefin+Sans:wght@500&family=Poppins:wght@400;500;600&family=Long+Cang&family=ZCOOL+XiaoWei&display=swap");

/*=============== LOCAL FONTS ===============*/
@font-face {
  font-family: "Impact";
  src: url(/assets/fonts/IMPACT.TTF);
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  --animate-snow-1: animate-snow-1 5s infinite ease-in-out;
  --animate-snow-2: animate-snow-2 5s infinite ease-in-out;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(210, 80%, 54%);
  --first-color-alt: hsl(210, 80%, 50%);
  --title-color: hsl(210, 24%, 90%);
  --text-color: hsl(210, 16%, 70%);
  --white-color: #fff;
  --body-color: hsl(210, 30%, 4%);
  --preloader-background-color: hsl(210, 30%, 10%);
  --preloader-text-color: hsl(210, 24%, 90%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --zh-body-font: "Long Cang", serif;
  --second-font: "Dancing Script", cursive;
  --zh-second-font: "ZCOOL XiaoWei", serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title {
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
  text-align: center;
  margin-bottom: 1.5rem;
}

.main {
  overflow-x: hidden; /* For animations */
  overflow-y: visible;
}

/* Snow animation */
@keyframes animate-snow-1 {
  0%, 100% {
    transform: scale(.5);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes animate-snow-2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(.5);
  }
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: background .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1.5rem;
}

.nav__logo,
.nav__toggle,
.nav__close{
  display: flex;
  color: var(--white-color);
}

.nav__logo img{
  width: 30px;
  transform: rotate(-10deg);
}

.nav__logo{
  align-items: center;
  column-gap: .25rem;
  font-family: var(--h2-font-size);
}

.nav__toggle{
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .nav__menu{
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 3.5rem;
    transition: top .4s;
  }
}

.nav__list{
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
}

.nav__link{
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: color .4s;
}

.nav__link:hover{
  color: var(--first-color);
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__img-1,
.nav__img-2{
  position: absolute;
}

.nav__img-1 {
  width: 40px;
  top: 6rem;
  left: 2.5rem;
  transform: rotate(-15deg);
}

.nav__img-2{
  width: 60px;
  right: 1rem;
  bottom: 2rem;
  transform: rotate(15deg);
}

/* Show menu */
.show-menu{
  top: 0;
}

/* Change background header */
.bg-header{
  background: var(--body-color);
}

/* Active link */
.active-link{
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home{
  position: relative;
  background: linear-gradient(180deg, 
            hsl(210, 88%, 20%), hsl(210, 70%, 58%));
  height: 650px;
  padding-top: 7rem;
  overflow: hidden;
}

.home__title{
  color: var(--white-color);
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  text-align: center;
}

.home img{
  position: absolute;
}

.home__mountain-1,
.home__snow{
  bottom: 0;
}

.home__village,
.home__pine,
.home__moon,
.home__trineo{
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home__village{
  width: 260px;
  bottom: 1rem;
}

.home__pine{
  width: 250px;
  bottom:  4rem;
}

.home__mountain-2{
  bottom: 3rem;
}

.home__mountain-3{
  bottom: 6rem;
}

.home__moon{
  width: 300px;
  bottom: 8.5rem;
}

.home__trineo{
  width: 250px;
  bottom: 14.5rem;
}

/*=============== ABOUT ===============*/
.about__container{
  position: relative;
  row-gap: 3.5rem;
}

.about__data{
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.about__description{
  margin-bottom: 2rem;
}

.about__img{
  width: 320px;
  justify-self: center;
}

.about__snow-1,
.about__snow-2{
  width: 50px;
  position: absolute;
}

.about__snow-1{
  top: 1rem;
  left: 1.5rem;
  animation: var(--animate-snow-1);
}

.about__snow-2{
  right: -.75rem;
  bottom: .5rem;
  animation: var(--animate-snow-2);
}

/*=============== BUTTON ===============*/
.celebrate__data button {
  --glow-color: var(--first-color);
  --glow-spread-color: hsla(210, 80%, 45%, 0.697);
  border: 0.25em solid var(--glow-color);
  padding: 1em 3em;
  color: var(--glow-color);
  font-size: 15px;
  font-weight: bold;
  background-color: var(--btn-color);
  border-radius: 1em;
  outline: none;
  box-shadow: 0 0 1em 0.25em var(--glow-color)， 0 0 4em 1em var(--glow-spread-color)， inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  position: relative;
  transition: all 0.3S;
}

.celebrate__data button::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--glow-spread-color);
  filter: blur(2em);
  opacity: .7;
  transform: perspective(1.5em) rotateX(15deg) scale(1, 0.6);
}

.celebrate__data button:hover {
  color: var(--body-color);
  background-color: var(--glow-color);
  box-shadow: 0 0 1em .25em var(--glow-color),
    0 0 4em 2em var(--glow-spread-color),
    inset 0 0 .75em .25em var(--glow-color);
}

/*=============== SEND ===============*/
.send__container{
  position: relative;
  grid-template-columns: .8fr;
  justify-content: center;
  row-gap: 2rem;
  padding-top: 1.5rem;
}

.send__card{
  text-align: center;
}

.send__img{
  width: 180px;
  margin-bottom: .75rem;
}

.send__title{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.send__subtitle{
  text-align: center;
  font-family: var(--zh-second-font);
  font-size: 1.2rem;
  margin: 0 10%;
}

.send__description{
  font-family: var(--zh-body-font);
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

.send__snow-1,
.send__snow-2,
.send__snow-3{
  width: 50px;
  position: absolute;
}

.send__snow-1{
  left: 0;
  top: 7rem;
  animation: var(--animate-snow-1);
}

.send__snow-2{
  top: 23rem;
  right: 0;
  animation: var(--animate-snow-2);
}

.send__snow-3{
  bottom: 9rem;
  left: 0;
  animation: var(--animate-snow-1);
}

/*=============== CELEBRATE ===============*/
.celebrate__container{
  position: relative;
  row-gap: 3.5rem;
}

.celebrate__data{
  text-align: center;
}

.celebrate__description{
  margin-bottom: 2rem;
}
.celebrate__description b {
  font-family: var(--zh-second-font);
  font-size: 1.2rem;
}

.celebrate__img{
  width: 320px;
  justify-self: center;
}

.celebrate__snow-1,
.celebrate__snow-2{
  width: 50px;
  position: absolute;
}

.celebrate__snow-1{
  top: 1.5rem;
  left: 1.5rem;
  animation: var(--animate-snow-1);
}

.celebrate__snow-2{
  top: 18rem;
  right: 0;
  animation: var(--animate-snow-2);
}

/*=============== CELEBRATE POPUP ===============*/
.popup {
  position: fixed;
  overflow: hidden;
  top: -150%;
  left: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, .9);
  box-shadow: inset 0px 0px 20px 5px rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  width: 600px;
  height: fit-content;
  max-width: 80%;
  max-height: 80%;
  padding: 10px 20px;
  border-radius: 10px;
  z-index: 1000;
  transition: top 0ms ease-in-out 300ms,
    opacity 300ms ease-in-out 0ms,
    transform 300ms ease-in-out 0ms;
}

.popup.active {
  top: 55%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: top 0ms ease-in-out 0ms,
    opacity 300ms ease-in-out 0ms,
    transform 300ms ease-in-out 0ms;
}

.popup .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 5vh;
  height: 5vh;
  font-size: 100%;
  text-align: center;
  line-height: 25px;
  color: var(--title-color);
  background: hsl(210, 30%, 10%);
  border-radius: 0 10px 0 50%;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.popup .close-btn .ri-close-line {
  scale: 1.6;
}
.popup h1 {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--second-font);
  color: var(--body-color);
}
.popup .letter-img {
  overflow: auto;
}
.popup img {
  min-width: 400px;
}
.popup .letter-img::-webkit-scrollbar {
  display: none;
}

/*=============== DOWNLOAD BUTTON ===============*/
.download {
  align-self: center;
  position: relative;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: var(--first-color);
  transition: all 0.2s ease;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  max-width: 300px;
}

.download:active {
  transform: scale(0.96);
}

.download:before,
.download:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 150%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.download.animate::before {
  top: -70%;
  background-image: radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--first-color) 20%, transparent 30%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--first-color) 15%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  animation: greentopBubbles ease-in-out 0.6s forwards infinite;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.download.animate::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--first-color) 15%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%),
    radial-gradient(circle, var(--first-color) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  animation: greenbottomBubbles ease-in-out 0.6s forwards infinite;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

/*=============== FOOTER ===============*/
.footer{
  overflow: hidden;
}

.footer__container{
  position: relative;
  padding-block: 2rem 2rem;
  text-align: center;
}

.footer__logo,
.footer__social-link,
.footer__copy{
  color: var(--white-color);
}

.footer__logo{
  display: inline-block;
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
  margin-bottom: 1rem;
}

.footer__copy{
  display: block;
  margin-top: 1rem;
  font-size: var(--small-font-size);
}

.footer__snow-1,
.footer__snow-2{
  position: absolute;
}

.footer__snow-1{
  width: 50px;
  top: 2rem;
  left: 0;
  animation: var(--animate-snow-1);
}

.footer__snow-2{
  width: 70px;
  top: 6.5rem;
  right: -3rem;
  animation: var(--animate-snow-2);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(210, 8%, 15%);
}

::-webkit-scrollbar-thumb{
  background-color: hsl(210, 8%, 25%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(210, 8%, 35%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--white-color);
  display: inline-flex;
  padding: .45rem;
  border-radius: .45rem;
  font-size: 1rem;
  color: var(--body-color);
  z-index: var(--z-tooltip);
  transition: bottom .3s, transform .3s;
}

.scrollup:hover{
  transform: translateY(-.25rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== PRELOADER STYLE ===============*/
@media (max-width: 650px) {
  .ml13 {
    font-size: 3.5rem !important;
    /* Adjust this value as needed */
  }

}

@media (max-width: 410px) {
  .ml13 {
    font-size: 2.5rem !important;
    /* Adjust this value as needed */
  }

}

@media (max-width: 310px) {
  .ml13 {
    font-size: 1.8rem !important;
    /* Adjust this value as needed */
  }

}

.preloader {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Tailwind 'gap-4' is 1rem */
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* 'h-screen' is 100% of the viewport height */
  background-color: var(--preloader-background-color);
  z-index: 1100;
  /* 'z-[1100]' sets the z-index */
  transition: opacity 0.2s ease-in-out;
}

.ml13 {
  font-size: 5.5rem;
  /* text-transform: uppercase; */
  color: var(--preloader-text-color);
  letter-spacing: -1px;
  font-weight: 900;
  font-family: "Dancing Script", cursive;
  text-align: center;
}

.ml13 .word {
  display: inline-flex;
  flex-wrap: wrap;
  white-space: nowrap;
}

.ml13 .letter {
  display: inline-block;
  line-height: 1em;
}

/*=============== FLIP COUNTER CUSTOMIZE ===============*/
.counter {
  margin-top: 3rem;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter p{
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Josefin Sans";
  color: var(--title-color);
  font-size: var(--h3-font-size);
}

.tick {
  width: 480px;
  max-width: 100%;
  font-size: 1rem;
  white-space: nowrap;
  font-family: arial, sans-serif;
}

.tick-flip,
.tick-text-inline {
  font-size: 2.5em;
}

.tick-label {
  margin-top: 1em;
  font-size: 1em;
  font-family: "Josefin Sans";
}

.tick-char {
  width: 1.5em;
}

.tick-text-inline {
  display: inline-block;
  text-align: center;
  min-width: 1em;
}

.tick-text-inline+.tick-text-inline {
  margin-left: -.325em;
}

.tick-group {
  margin: 0 .5rem; 
  text-align: center;
}

.tick-text-inline {
  color: rgb(0, 0, 0) !important;
}

.tick-label {
  color: var(--title-color) !important;
  margin-top: .2rem;
}

.tick-flip-panel {
  color: #fff !important;
}

.tick-flip,
.splitter{
  font-family: "Impact", Charcoal, sans-serif !important;
}

.tick-flip-panel-text-wrapper {
  line-height: 1.45 !important;
}

.tick-flip-panel {
  background-color: #3c3e3c !important;
}

.tick-flip {
  border-radius: 0.16em !important;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px){
  .home__village{
    width: 360px;
  }
  .home__pine{
    width: 400px;
  }

  .about__container,
  .celebrate__container{
    grid-template-columns: .8fr;
    justify-content: center;
  }
}

@media screen and (min-width: 767px){
  .nav__toggle,
  .nav__close,
  .nav__img-1,
  .nav__img-2{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }

  .home{
    height: 800px;
  }
  .home__village{
    width: 460px;
  }
  .home__pine{
    width: 500px;
    bottom: 6rem;
  }
  .home__moon{
    width: 450px;
    bottom: 12rem;
  }
  .home__trineo{
    width: 350px;
    bottom: 20rem;
  }

  .send__container{
    grid-template-columns: repeat(2, .4fr);
    column-gap: 3rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px){
  .main {
    overflow-x: visible;
  }
  .section{
    padding-block: 7rem 3rem;
  }
  .home__title{
    font-size: 4rem;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .about__container{
    grid-template-columns: 400px 500px;
    align-items: center;
    column-gap: 3rem;
  }
  .about__data,
  .about__data .section__title{
    text-align: initial;
  }
  .about__img{
    width: 500px;
    order: -1;
  }
  .about__snow-1{
    top: 0;
    left: 0;
  }
  .about__snow-2{
    left: 23rem;
    bottom: 3.5rem;
  }

  .send__container{
    grid-template-columns: repeat(3, .8fr);
    column-gap: 3rem;
    padding-top: 3rem;
  }
  .send__img{
    margin-bottom: 1rem;
  }
  .send__description{
    font-size: 1.4rem;
  }
  .send__snow-1{
    left: -1rem;
    top: -1rem;
  }
  .send__snow-2{
    top: 3rem;
  }
  .send__snow-3{
    left: 22rem;
    bottom: 0;
  }

  .celebrate__container{
    grid-template-columns: 335px 500px;
    align-items: center;
    column-gap: 6rem;
  }
  .celebrate__data,
  .celebrate__data .section__title{
    text-align: initial;
  }
  .celebrate__img{
    width: 500px;
  }
  .celebrate__snow-1{
    top: 4.5rem;
    left: 14rem;
  }
  .celebrate__snow-2{
    right: 2rem;
  }

  .footer__container{
    padding-block: 3rem 3rem;
  }
  .footer__social{
    column-gap: 2rem;
  }
  .footer__social-link{
    font-size: 1.5rem;
  }
  .footer__snow-1{
    top: 8.5rem;
    left: 10rem;
  }
  .footer__snow-2{
    top: 8.5rem;
    right: 4rem;
  }
  .footer__copy{
    margin-top: 1.8rem;
  }

  .scrollup{
    right: 3.5rem;
  }
}

@media screen and (min-width: 1064px) {
  .container{
    margin-inline: auto;
  }
}

@media screen and (min-width: 1200px) {
  .home{
    height: 980px;
  }
  .home__title{
    font-size: var(--biggest-font-size);
  }
  .home__mountain-1,
  .home__mountain-2,
  .home__mountain-3,
  .home__snow{
    width: 110%;
  }
  .home__village{
    width: 750px;
    bottom: 4rem;
  }
  .home__pine{
    width: 850px;
    bottom: 8rem;
  }
  .home__mountain-1,
  .home__mountain-2{
    bottom: 0;
  }
  .home__moon{
    width: 600px;
    bottom: 14rem;
  }
  .home__trineo{
    width: 500px;
    bottom: 28rem;
  }
}

/* For 2K+ resolutions */
@media screen and (min-width: 1700px){
  .home{
    min-width: 1280px;
    height: 990px;
    margin-inline: auto;
  }
  .home__village {
    width: 800px;
    bottom: 4rem;
  }
}