
/* Cute pastel color palette:
   Pink: #ff8fab
   Lavender: #cdb4db
   Baby blue: #a2d2ff
   Cream: #fff1e6
   Dark text: #5e548e
*/

:root {
  --pink: #ff8fab;
  --light-pink: #ffe5ec;
  --lavender: #cdb4db;
  --blue: #a2d2ff;
  --cream: #fffaf5;
  --purple: #5e548e;
  --white: #ffffff;
}

/* Page background */
body {
  margin: 0;
  padding: 25px;
  background-color: ffffff;
  background-image: url(bg2.jpg);
  background-repeat: repeat-x;
  background-position: bottom center;
background-attachment: fixed;
  color: var(--purple);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.3px;
   cursor: url('https://cdn.cursors-4u.net/previews/hello-kitty-38-3073c5ec-32.webp') 32 32, auto;
}

/* Links */
a:link,
a:visited {
  color: #e75480;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}

a:hover {
  color: #9b5de5;
  text-decoration: underline;
  background-color: #ffe5ec;
  border-radius: 8px;
  padding: 3px 6px;
  cursor: pointer;
}

a:active {
  color: #ff477e;
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3 {
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  color: #e75480;
  text-shadow: 2px 2px 0 #ffd6e0;
}

h1 {
  padding: 12px 18px;
  background-color: var(--light-pink);
  border: 3px dashed var(--pink);
  border-radius: 20px;
  display: inline-block;
}

/* Paragraphs */
p {
  color: var(--purple);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

/* Tables */
td {
  color: var(--purple);
  padding: 10px 14px;
}

/* Forms */
input,
textarea,
select {
  box-sizing: border-box;
  padding: 10px 12px;
  background-color: var(--white);
  color: var(--purple);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 15px;
  border: 2px solid var(--lavender);
  border-radius: 12px;
  outline: none;
  box-shadow: 2px 3px 0 #eadcf8;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px #ffe5ec;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Buttons */
input[type="submit"],
input[type="button"],
button {
  padding: 10px 18px;
  background-color: var(--pink);
  color: var(--white);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 3px 4px 0 #e36b8a;
  transition: all 0.2s ease;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background-color: #9b5de5;
  transform: translateY(-2px);
  box-shadow: 3px 5px 0 #7541b5;
}

/* Optional cute content box */
.cute-box {
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--white);
  border: 3px solid var(--lavender);
  border-radius: 24px;
  box-shadow: 6px 6px 0 #eadcf8;
}

/* Optional decorative divider */
hr {
  border: 0;
  border-top: 3px dotted var(--pink);
  margin: 25px 0;
}

.enter1 {
  width: 200px;
  height: 200px;
  margin: 150px auto;
  padding: 5px;
  border: 2px dashed #ff8fab;
  background-color: #ffe5ec;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
