@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Aubrey&display=swap');

/* Title box heading font */
.title-box h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5em;
}

/* Main page styling */
body {
  font-family: 'Aubrey', cursive;
  color: #ffb6c1;
  background-image: url('heartss.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

/* Container box */
.container {
  background-color: #ffe6ec;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 0 20px #ff99bb;
  width: 400px; /* you can adjust this size */
}

.us img {
  border-radius: 10px;
  box-shadow: 0 0 10px #ff80a0;
}

/* Title box */
.title-box {
  display: flex;
  justify-content: center;
  background-color: #ffb6c1;
  color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px #ff80a0;
  width: fit-content;
  margin: 30px auto;
  text-align: center;
}

/* Links */
a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #ffb6c1;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
}

li {
  background-color: #ffd1dc;
  color: white;
  margin: 8px;
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

li:hover {
  transform: translateY(-5px); /* moves the item up */
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4); /* soft pink glow */
}

