#canvas {
  width: 100%;
  aspect-ratio: 1068/1076;
  position: relative;
  margin: 0 auto;
}
#inner-circle {
  position: absolute;
  border: 1px solid var(--color-primary, #483b33);
  top: 17.1%;
  left: 10%;
  width: 79.9%;
  height: 79.4%;
  border-radius: 100%;
}
#inner-circle-thicc {
  border: 3px solid var(--color-primary, #483b33);
  border-radius: 100%;
  position: absolute;
  top: 0.75%;
  left: 0.75%;
  width: 98%;
  height: 97.8%;
}
.circle {
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-primary, #483b33);
  border-radius: 100%;
  position: absolute;
}
.circle .inner {
  width: 86%;
  height: 86%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary, #483b33);
  border-radius: 100%;
  position: absolute;
  margin: 7%;
  gap: 7%;
}
.circle a.inner {
  background-color: white;
  transition: background-color 0.3s ease;
  color: var(--color-primary, #483b33);
  text-decoration: none;
  padding: 15%;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.circle a.inner:hover {
  background-color: #a8bbce;
}
.circle .inner img {
  width: 70%;
  /*height: 60%;*/
}
