* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.container {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  z-index: 2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  background-color: #f8f8f8;
  padding: 15px 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: inline-block;
}

.links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.links a img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s;
}

.links a:hover img {
  transform: scale(1.15);
}

.binary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: auto;
}

.bit {
  font-size: 1.2rem;
  color: #ccc;
  margin: 5px;
  cursor: pointer;
  transition: color 0.2s;
}

.bit:hover {
  color: #999;
  transform: scale(2);
}