@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
  font-family: "微軟正黑體", Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  color: #333;
  font-size: 36px;
}

p {
  color: #666;
  font-size: 20px;
  margin-top: 10px;
}

