body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: url('img/BackGround_Common.png') no-repeat center center fixed; 
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#logo {
  width: 25%;
  min-width: 400px;
}

.about-section {
  width: 80%;
  max-width: 800px;
  padding: 40px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #d4d4d4;
}

.store-links {
  margin-top: 30px;
}

.store-links a {
  display: inline-block;
  padding: 12px 24px;
  margin: 0 10px;
  background-color: #99fdde;
  color: #121212;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.store-links a:hover {
  background-color: #fad0fb;
}
