:root {
  font-size: 16px;
  --orange: #ffb000;
  font-family: verdana, sans-serif !important;
}
::selection {
  color: var(--orange);
  background-color: white;
}

body {
  color: var(--orange);
  background: #aaa url("../images/barrenasadesert.jpg");
}

main {
  background: #000;
  margin: 200px;
  padding: 20px;
}
.contentBox {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--orange);
}

a {
  color: white;
}
a:visited {
  color: hsl(0, 1%, 72%);
}
a:hover {
  color: white;
  text-decoration: underline;
}
button {
  padding: 8px 128px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  background-color: black;
  color: var(--orange);
  border: 2px solid var(--orange);
}

button:hover {
  background-color: var(--orange);
  color: black;
}

.center {
  text-align: center;
  border: 3px solid #ffb000;
  padding: 15px; /* Horizontal centering */
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

footer {
  padding: 30px;
  text-align: center;
}


/* customizable snowflake styling */
.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}

.snowflake,
.snowflake .inner {
  animation-iteration-count: infinite;
  animation-play-state: running;
}
@keyframes snowflakes-fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(110vh);
  }
}
@keyframes snowflakes-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80px);
  }
}

.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
  pointer-events: none;
  animation-name: snowflakes-shake;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
}
.snowflake .inner {
  animation-duration: 10s;
  animation-name: snowflakes-fall;
  animation-timing-function: linear;
}
.snowflake:nth-of-type(0) {
  left: 1%;
  animation-delay: 0s;
}
.snowflake:nth-of-type(0) .inner {
  animation-delay: 0s;
}
.snowflake:first-of-type {
  left: 10%;
  animation-delay: 1s;
}
.snowflake:first-of-type .inner,
.snowflake:nth-of-type(8) .inner {
  animation-delay: 1s;
}
.snowflake:nth-of-type(2) {
  left: 20%;
  animation-delay: 0.5s;
}
.snowflake:nth-of-type(2) .inner,
.snowflake:nth-of-type(6) .inner {
  animation-delay: 6s;
}
.snowflake:nth-of-type(3) {
  left: 30%;
  animation-delay: 2s;
}
.snowflake:nth-of-type(11) .inner,
.snowflake:nth-of-type(3) .inner {
  animation-delay: 4s;
}
.snowflake:nth-of-type(4) {
  left: 40%;
  animation-delay: 2s;
}
.snowflake:nth-of-type(10) .inner,
.snowflake:nth-of-type(4) .inner {
  animation-delay: 2s;
}
.snowflake:nth-of-type(5) {
  left: 50%;
  animation-delay: 3s;
}
.snowflake:nth-of-type(5) .inner {
  animation-delay: 8s;
}
.snowflake:nth-of-type(6) {
  left: 60%;
  animation-delay: 2s;
}
.snowflake:nth-of-type(7) {
  left: 70%;
  animation-delay: 1s;
}
.snowflake:nth-of-type(7) .inner {
  animation-delay: 2.5s;
}
.snowflake:nth-of-type(8) {
  left: 80%;
  animation-delay: 0s;
}
.snowflake:nth-of-type(9) {
  left: 90%;
  animation-delay: 1.5s;
}
.snowflake:nth-of-type(9) .inner {
  animation-delay: 3s;
}
.snowflake:nth-of-type(10) {
  left: 25%;
  animation-delay: 0s;
}
.snowflake:nth-of-type(11) {
  left: 65%;
  animation-delay: 2.5s;
}

.marquee-container {
  overflow: hidden; /* Hide overflowing content */
  white-space: nowrap; /* Keep text on a single line */
  width: 100%; /* Or set a specific width */
}

.marquee-content {
  display: inline-block; /* Allow animation to work */
  padding-left: 100%; /* Start off-screen */
  animation: marquee 10s linear infinite; /* Animation with duration, speed, and looping */
}

@keyframes marquee {
  0% {
    transform: translateX(0); /* Start off-screen right */
  }
  100% {
    transform: translateX(-100%); /* Move off-screen left */
  }
}

#trail-container {
  position: fixed; /* Cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks through the trail container */
  z-index: 999; /* Ensure trail is above content*/
}

.trail-element {
  position: absolute;
  width: 10px; /* Adjust as needed */
  height: 10px; /* Adjust as needed */
  background-color: #ffb000; /* Adjust color */
  border-radius: 50%; /* Circular elements */
  opacity: 0.7; /* Set initial opacity */
  transition: opacity 0.5s ease-out, transform 0.3s ease-out; /* Transition for fading and scaling*/
}

@media (prefers-reduced-motion: reduce) {
  .snowflake {
    display: none;
  }

  #trail-container {
    display: none;
  }
}

@media (max-width: 700px) {
  
  #trail-container {
    display: none;
  }
  
  main {
    margin: 50px;
  }
  button {
  padding: 8px 64px;
  }
}


