@font-face {
  font-family: "MyFontitalic";
  src: url("../fonts/ggez.italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MyFont";
  src: url("../fonts/ggez.regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "MyFontitalic", sans-serif;
  background: url("../image/bg.jpg") center / cover no-repeat;
  min-height: 100vh;
  color: #f8f9fa;
}

.logo img {
  display: block;
  margin: 20px auto;
  max-width: 60%;
  height: auto;
}

.card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #222;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #fff;
  transition: transform 0.1s ease;
}

#install iframe {
  width: 100%;
  height: 80vh; /* 80% of viewport height */
  border: none;
}

.card:hover {
  transform: scale(1.02);
}

.value {
  font-weight: bold;
  font-size: 1.5rem;
}

#status {
  font-weight: bold;
}

pre#log {
  background: #111;
  color: #0ff;
  padding: 10px;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
}
