/* Reset and basic font */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100%;
}

/* Background image */
body {
  background-image: url("assets/cutieegram_bg.png");
  background-size: cover;       /* Cover entire screen */
  background-position: center;  /* Center the image */
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax-like effect */
}

/* Optional overlay to make text readable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* Light semi-transparent overlay */
  z-index: -1;
}

/* Header styling */
.site-header {
  text-align: center;
  padding: 50px 20px;
  color: #333;
}

/* Logo styling */
.logo {
  width: 250px;    /* Adjust size */
  height: 250px;
  display: block;
  margin: 0 auto 20px auto;
}

/* Main content styling */
.main-content {
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  color: #555;
}
