html {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body {
  width: 95vh;
  height: 95vh;
  background: radial-gradient(rgb(64,32,128), black);
}

details > summary {
    list-style: none; /* Hides the arrow in most browsers */
}
details > summary::-webkit-details-marker {
    display: none; /* Hides the arrow specifically for WebKit-based browsers like Safari */
}

.controlPanel{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0 0 5px;
  height: 100%;
  width: fit-content;
  color: rgb(233,233,200);
  z-index: 1;
  backdrop-filter: blur(10px);
}
.icon {
  width: 25px;
  height: 25px;
  margin: 5px;
}
.toggle {
  width: 15%;
}
.inputGroup{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

summary:hover{
  cursor: pointer;
}
summary:hover::after{
  display: inline-block;
  opacity: 1;
}
summary::after{
  background: rgb(32,32,32);
  color: rgb(233,233,200);
  z-index: 3;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}
#morphySummary::after {
  content: "Edit Morphy";
}
#eyeSummary::after {
  content: "Edit Eyes";
}
#eyeSocketSummary::after {
  content: "Edit Socket";
}
#mouthSummary::after {
  content: "Edit Mouth";
}
#shadowsSummary::after {
  content: "Edit Shadows";
}

.emoji{
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
}
.emoji:hover{
  cursor: pointer;
}
.emoji:hover::before{
  opacity: 1;
}
.emoji::before {
  content: "Click to Capture Expression";
  position: relative;
  top: 50%;
  left: 50%;
  padding: 2px;
  background: rgb(32,32,32);
  color: rgb(233,233,200);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footnote{
  display: flex;
  flex-direction: column;
  position:absolute;
  bottom: 1%;
  left: 1%;
  color: rgb(233,233,200);
  font-size: 10px;
  z-index: 2;
}
.footnote p{
  margin: 0;
}

svg#morphy {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


@media (orientation: portrait) {
  body {
    width: 95vw;
    height: 95vw;
  }
  .controlPanel{
    flex-direction:row;
    justify-content: space-evenly;
    width: 100%;
    position: absolute;
    left: 0;
    top: 105vw;
    height: 50px;
    color: rgb(233,233,200);
    z-index: 1;
    backdrop-filter: blur(10px);
  }
  
}
