/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #1a1a1a;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1240px;
  text-align: center;
}

.logo-endot {
  max-width: 140px;
  width: 100%;
  height: auto;
}

.logo-infrapipe {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin-top: 2rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #00abff;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}
a {
  color: #00abff;
}

#redirect-message {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.btn {
  padding: 12px 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background-color: #17de87;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  display: inline-block;
}

.btn:hover {
  background-color: #00abff;
}
