/* src/style.css */
body {
  background-color: #333;
}

.pin-div {
  display: flex;
  align-items:  center;
  gap: 10px;
}

.pin-div input {
  color: #fff;
  background: none;
}

.hidden {
  display: none !important;
}

.pin-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links {
  position: absolute;
  translate: (-50%, 0);
  display: flex;
  flex-direction: column;
  gap: 6px;
  top: 4px;
  left: 50%;
}

.links a {
  text-decoration: none;
  color: #fece01;
  font-family: sans-serif;
  font-size: larger;
  font-weight: bold;
}

.links a:hover {
  color: #0f0;
}
