/* General reset to remove unwanted margins and padding */
html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}
/* Background Image */
body {
  color: #414141;
  background-image: url("/images/SKY_BACKGROUND_MAIN.png");
  background-size: cover;
  background-attachment: scroll;
  background-position: center top;
  z-index: -1;
  cursor: none;
}

/* Header Image */
#headerimage {
  width: 100vw; 
  height: auto; 
  display: block;
  position: relative;
  z-index: 0; /* Ensures header is above the ads */
  /* max-width: 89vw; */
  margin: 0 auto;
}

/* Cloud Header Section */
.cloud-header {
  width: 100%;
  max-height: 20vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Body Text Specific Margins */
p, h1 {
  margin: 2vw; /* Adds margins to text elements */
  font-size: 20px;
}

.welcome {
  text-align: center;
  font-size: 3vh;
}

/* Shop Styling to Remove White Background */
.ec-cart-widget,
.ec-store {
  background: transparent !important; /* Make shop background transparent */
}

/* Header and Other Non-Text Elements with No Margins */
.cloud-and-title-header,
.topnav {
  margin: 0;
  padding: 0;
}

hr {
  height: 2px;
  background-color: black;
  margin: 60px;
}

.cursor {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #03fc52;
  pointer-events: none;
  animation: trail 1s ease-out infinite;
  z-index: 12;
}

@keyframes trail {
  from { transform: scale(1); }
  to { transform: scale(0.2); }
}