body {
  background-image: url(blue.jpg);
  color: rgb(67, 64, 145);
  font-family: Helvetica;
  text-align: center;
}

/* Logo styling */
.logo {
  width: 200px;  /* Set specific width */
  height: auto;  /* Maintain aspect ratio */
  max-width: 100%; /* Responsive - won't exceed container width */
  display: block;
  margin: 20px auto; /* Center the image with some margin */
}

/* Sticky note container for positioning */
.sticky-note-container {
  position: relative;
  display: inline-block;
  margin: 20px auto;
}

.sticky-note {
  width: 300px;  /* Set specific width */
  height: auto;  /* Maintain aspect ratio */
  max-width: 100%; /* Responsive - won't exceed container width */
  display: block;
}

/* Text overlay on sticky note */
.sticky-note-text {
  position: absolute;
  top: 35%;  /* Adjust vertical position */
  left: 45%; /* Center horizontally */
  
  transform: translateX(-50%) rotate(5deg); /* Perfect center alignment */
  width: 80%; /* Width of text area */
  text-align: center;
  color:rgb(67, 64, 145); /* Dark text color */
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Handwriting-like font */
  font-size: 15px;
  line-height: 1.4;
  pointer-events: none; /* Allows clicking through text to image */
}