/* Reset default browser styles */
body, h1 {
  margin: 0;
  padding: 0;
}

/* Container styles */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Add pastel rainbow border */
  border: 4px solid;
  background-image: linear-gradient(to right, #f3b7bd, #f7cfaf, #fae7a1, #c7f0b4, #a4f8c5, #a3e7f2, #b4c4f8);
  background-clip: padding-box;
}

/* Header styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  color: white; /* Text color set to white */
}

img {
  max-width: 50px;
  height: auto;
}

#data-container {
  padding: 10px;
}

#data-container div {
  display: inline-block;
  background-color: #e9e9e9;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 20px;
}

#data-container h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white; /* Text color set to white */
}

#data-container p {
  margin: 5px 0;
  color: white; /* Text color set to white */
}

#data-container div:nth-child(even) {
  background-color: #f5f5f5;
}

/* Background and shadow */
body {
  background-image: url('https://images6.alphacoders.com/123/1232063.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #5a5a5a;
}
