/* style.css */

body {
  background-color: #121212; /* Dark background color */
  color: #ffffff; /* Light text color */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

#welcome-message {
  text-align: center;
  padding: 20px;
  font-family: 'Varela Round', sans-serif; /* Change the font family */
  font-size: 45px; /* Change the font size for the welcome message */
  font-weight: bold;
}

/* Add any additional styles for your content here */