body {
  margin: 0;
  background: #9EEF80;
  overflow: hidden;
}

::selection {
  color: #9EEF80;
  background: #3C422E;
}


a {
  text-decoration: none;
  cursor: pointer;
}


::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #3C422E;
  border-radius: 100px;
}

.logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100vh;
}

.logo img {
  width: 350px;
  height: auto;
  user-select: none; /* Prevent text or image selection */
  pointer-events: none; /* Prevent clicking or interaction */
  -webkit-user-drag: none; /* Prevent image dragging (for Safari) */
}