/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.screen {
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.jp-text {
  font-weight: bold;
}

.wand-image {
  height: 60px;
  vertical-align: middle;
}

.subtext {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 0.25em;
  color: #333;
}

.device-icon {
  margin: 30px auto 0;
  width: 30px;
  height: 50px;
  border: 2px solid #000;
  position: relative;
}

.device-icon::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 2px;
  background: black;
}

.enter-button {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  color: #fff;
  background: black;
  padding: 10px 20px;
  text-decoration: none;
  border: 2px solid black;
  transition: 0.3s ease;
}

.enter-button:hover {
  background: #fff;
  color: black;
}
}