/* index.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('Security-LightMode-4.webp') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}

h1 {
  margin-top: 30px;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px #000;
}

.search-box {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-box input {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.search-box button {
  padding: 10px 20px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.card-box {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.card-box img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid white;
}

.card-box ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.card-box li {
  margin: 10px 0;
  font-size: 1.1rem;
}
.card-box li strong {
  color: #ffcc00;
}