#message-box {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: adds shadow for depth */
}
p {
  font-size: 20px;
}
#message-box a {
  color: #005aa7;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
#message-box a:hover {
  color: #003366;
}
#message-box i {
  font-size: 80px;
  color: #005aa7;
}
