body {
  background: #fff;
  color: rgb(255, 255, 255);
  font-family: Arial, sans-serif;
}

p {
  color: white;
  font-size: 25px;
}

h1 {
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

/* General link styles */
a:not(.button) {
  font-size: 30px;
  color: aqua;
}

.button-container {
  margin: 0 0;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 20px 40px;
  background-color: #4CAF50;
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-size: 28px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 3px solid #388e3c;
  min-width: 220px;
  margin: 0 auto;
}

.button:hover {
  background-color: #388e3c;
  color: #fff !important;
  transform: scale(1.05);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.back-button {
  position: absolute;
  top: 30px;
  left: 40px;
  padding: 18px 36px;
  background: linear-gradient(90deg, #ff9800 0%, #ff5722 100%);
  color: #fff !important;
  text-decoration: none;
  border-radius: 32px;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  z-index: 1000;
  border: none;
  cursor: pointer;
}
.back-button:hover {
  background: linear-gradient(90deg, #ff5722 0%, #ff9800 100%);
  color: #fff !important;
  transform: scale(1.07);
}

.pixll-logo-text {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-size: 80px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(90deg, #b0b6fa 0%, #8ee7fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  line-height: 1;
}

.pixll-logo-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0px;
}

.pixll-logo-img {
  height: 80px;
  width: 80px;
  margin-right: 18px;
  margin-bottom: 0;
  vertical-align: middle;
}

