@font-face {
  font-family: 'snazzy';
  src: url('fonts/hmm.ttf') format('truetype');
}

body {
  margin: 0;
  min-height: 100vh;
  background: black;
  color: white;
  font-family: 'snazzy';
  box-sizing: border-box;
}

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 3.5rem;
  margin: 0;
  line-height: 1;
  z-index: 10;
}

.xyz {
  color: rgba(136, 136, 136, 0.966);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  padding: 20px;
}

.main-image {
  width: 80%;
  max-width: 300px;
  max-height: 60vh;
  height: auto;
  margin-bottom: 30px;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  font-size: 1.8rem;
}

.username {
  color: rgba(136, 136, 136, 0.966);
  word-break: break-all;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }

  .info-column {
    font-size: 1.25rem;
  }

  .main-image {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

  .info-column {
    font-size: 1rem;
  }

  .main-image {
    max-width: 200px;
  }
}
