
    .container {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 100vh;
  width: 100%;
  background-color: moccasin;
  color: saddlebrown;
}
.centered-content {
  /* Optional: Add some styling to your inner content to make it visible */
  width: 500px; /* Example fixed width for the content container */
  padding: 20px;
  border: 2px solid black;
  text-align: center;
  background-color: sandybrown;
}