@charset "UTF-8";

/* Valentine's Day Background */
body {
  background:url(https://img.mfcimg.com/photos2/216/21668382/970-161-505-160-14538992.gif) no-repeat center center fixed;
  background-size:cover;
  font-family:'Georgia',sans-serif;
  color:#ffffff;
  margin:0;
  padding:0;
}

/* Section Box Styling with GIF Background */
.section {
  position:relative;
  background:url(https://img.mfcimg.com/photos2/216/21668382/462-784-429-713-14538982.gif) no-repeat center center;
  background-size:cover;
  padding:20px;
  border-radius:20px;
  box-shadow:0 0 20px rgba(0,0,0,0.5);
  margin:20px auto;
  max-width:800px;
  text-align:center;
  border:2px solid #ff6f91;
  color:#ffffff;
  overflow:hidden;
}

/* Section Headers */
h2 {
  font-size:28px;
  color:#ffffff;
  text-shadow:1px 1px 5px #000;
}

/* General Text */
p,ul,li {
  font-size:18px;
  line-height:1.6;
  color:#ffffff;
  text-shadow:1px 1px 5px #000;
}

/* Heart-Themed List */
ul {
  list-style:none;
  padding:0;
}

ul li::before {
  content:"â¤ï¸ ";
}

/* Tip Menu Table */
.tip-menu {
  width:100%;
  max-width:800px;
  margin:20px auto;
  border-spacing:10px;
  color:#ffffff;
}

.tip-menu td {
  padding:10px;
  text-align:left;
  font-size:18px;
}

.tip-menu td:first-child {
  font-weight:bold;
  color:#ff6f91;
}

/* Spoil Me Button */
.spoil-me {
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:linear-gradient(45deg,#ff6f91,#ff8fa3);
  color:#000;
  font-size:18px;
  font-weight:bold;
  text-decoration:none;
  border-radius:8px;
  box-shadow:0 0 10px rgba(255,255,255,0.5);
  transition:all .3s ease;
}

.spoil-me:hover {
  background:linear-gradient(45deg,#ff8fa3,#ff6f91);
  box-shadow:0 0 15px rgba(255,255,255,0.8);
  transform:scale(1.1);
}

/* Footer */
footer {
  text-align:center;
  font-size:14px;
  color:#ccc;
  margin-top:20px;
}