html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s, color 0.3s;
  background-color: white;
  color: black;
  padding: 1rem;
  box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: white;
  }
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

h1 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
  word-break: break-word;
}

.icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.icons a {
  flex: 1 1 40px;
  max-width: 50px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  transition: opacity 0.2s, transform 0.2s;
}

.icons a:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.icons svg {
  width: 100%;
  height: auto;
  display: block;
  fill: currentColor;
}