body {
  margin: 0;
  background-color: #121212;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.05) 30px,
      rgba(255, 255, 255, 0.05) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.05) 30px,
      rgba(255, 255, 255, 0.05) 31px
    );
  font-family: "Inconsolata", monospace;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  top: 0;
  position: sticky;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.left {
  display: flex;
  align-items: center;
}

.img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  object-fit: cover;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
  margin: 20px 20px;
}

.img:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

.butt {
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: white;
  font-family: "Inconsolata", monospace;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.butt:hover {
  color: rgb(238, 141, 141);
}

.right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
