@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65));
  background-size: cover;
  background-position: center;
  color: #333333;
}

header {
  padding: 25px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  background: #ffffff;
  color: #333333;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

nav a:hover {
  background: #ffd6e8;
}

.card {
  width: 700px;
  margin: 60px auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

h1,
h2 {
  font-family: 'Fredoka', Arial, sans-serif;
}

h1 {
  font-size: 60px;
  margin: 10px 0;
  color: #ff6fae;
  text-shadow: 2px 2px 0 #ffffff;
}

h2 {
  color: #7c5cff;
}

.small {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.details {
  margin-top: 40px;
}

.details ul {
  list-style: none;
  padding: 0;
}

.details li {
  background: #f3edff;
  margin: 12px auto;
  padding: 12px;
  border-radius: 15px;
  width: 70%;
}

.button {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(to right, #ff6fae, #7c5cff);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  opacity: 0.8;
}