html {
  background-color: #e0c9dd;
}

body {
  background-color: black;
  color: rgb(255, 255, 255);

  padding: 7%;
  margin: 0;
  font-size: 1.2em;

  cursor: default;
}

.image-container {
  position: relative;
  left: 0;
  width: 150px;
  height: 150px;
}

.grid {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr); /* Adjust the number of rows as needed */
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.grid-item {
  background-color: black;
  display: flex;
  opacity: 1;
  width: 15px;
  height: 15px;
  justify-content: center;
  align-items: center;
}

#grid.show > .grid-item {
  opacity: 0;
}

img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgb(251, 243, 136);
}

a:hover,
a:visited:hover {
  color: #e7aa53;
}

a,
a:visited {
  color: #ec5d56;
}
