html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overscroll-behavior: none;
  touch-action: none;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  font-family: 'Satoshi', Arial, sans-serif;
  box-sizing: border-box;
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #FFFBF3;
  color: #273040;
  text-align: center;
  font-size: 16px;
}

h1 {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}

svg {
  width: 100%;
  height: auto;
  max-width: 400px; /* opcional: límite máximo */
  display: block;
}

.footer {
  position: fixed;
  bottom: 0;
  margin: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.line {
  width: 100%;
  border-top: 1px solid #f0ece5;
  margin: 1rem 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.contact a {
  font-size: 1rem;
  margin: 0.5rem 1rem;
  color: #7f8c8d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact a:hover {
  color: #2980b9;
}

.social-links {
  margin: 0.5rem 0
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #7f8c8d;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #2980b9;
}