/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  justify-content: center;
  text-align: center;
  color: aliceblue;
  text-shadow: 0 0 15px white;
}

body{
  background: linear-gradient(to bottom, #FFCECC, #D8827F);
  height: 100svh;
}

/* Page container */
#coming-soon {
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
}

#logohc{
  height: 60px;
  margin: 25px;
}

/* Headings */
h1 {
  font-family: "Lexend", sans-serif;
  font-size: 6rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.landing{
  display: flex;
  flex-direction: column;
  height: 100svh;
  width: auto;
  justify-content: space-between;
  align-items: center;
  padding: 5%;
}

#centerimage{
  scale: 90%;
  margin: 20px;
}

.scrolling-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 500px; 
  background-image: url('media/bg.png'); 
  background-repeat: repeat-x; 
  animation: scrollBackground 30s linear infinite; 
  z-index: -1; 
}

@keyframes scrollBackground {
  0% {
    background-position: 0 0; /* Starting position */
  }
  100% {
    background-position: 1920px 0; /* Scroll the background horizontally */
  }
}


@media screen and (width < 780px) {
  .landing{
    justify-content: flex-start;
  }

  h1{
    font-size: 3rem;
  }
  }
@media screen and (width < 380px) {
  .landing{
    scale: 100%;
  }
  h1{
    font-size: 3rem;
  }
  img{
    height: 200px;
    width: auto;
  }
  #logohc{
    height: 50px;
    width: auto;
    margin: 0;
  }
  #centerimage{
    margin: 0;
  }
  p{
    font-size: 15px;
  }
}

@media screen and (width > 2000px) {
  #centerimage{
    scale: 150%;
  }
}
@media screen and (width > 3500px) {
  #centerimage{
    scale: 200%;
  }
}