body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}
.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.main-text {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
 }
 .icon-row {
   display: flex;
   gap: 32px;
   justify-content: center;
   align-items: center;
 }
 .icon-row svg,
 .icon-row img {
   transition: transform 0.2s;
 }
 .icon-row svg:hover,
 .icon-row a:hover img {
   transform: scale(1.15);
   transition: transform 0.2s;
   z-index: 1;
 }
.footer {
  position: fixed;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  z-index: 100;
  letter-spacing: 0.5px;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  text-align: center;
}
.email {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  z-index: 100;
  letter-spacing: 0.5px;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  text-align: center;
}
.email a {
  color: #fff;
  text-decoration: underline;
  margin: 0;
  align-items: center;
  box-shadow: none;
  border: none;
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
    padding: 0 8px;
  }
  .center-image img {
    height: 120px;
    max-width: 90vw;
  }
  .txtlogo img {
    height: 24px;
    max-width: 90vw;
  }
  .main-text {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .icon-row {
    gap: 16px;
  }
  .icon-row img {
    height: 32px !important;
    max-width: 48px;
  }
  .email {
    font-size: 11px;
    top: auto;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 4px;
  }
  .footer {
    font-size: 11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 4px;
  }
}