* {
  box-sizing: border-box;
  font-family: sans;
}
body {
  padding: 2px 10px;
  display: flex;
  justify-content: center;
}
.content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 400px;
  max-width: 500px;
  border: 5px solid rgb(60, 58, 2);
  background: white;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
@keyframes resize{
  from{scale : 1}
  to{scale : 1.5}
}
.indicator{
  width: 10px;
  height: 10px;
  font-size: 4px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 3.5px;
  color: white;
  background: linear-gradient(pink, coral, gold);
  border-radius: 5px;
  position: absolute;
  top: 40px;
  right: 50px;
  animation: resize 1s cubic-bezier(0.5, 1, 1, 0.8) infinite alternate;
}
.d{
  font-size: 11px;
  font-weight: bolder;
}
.container {
  display: flex;
  flex-direction: column;
  height: 65vh;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 2px;
}

.containerChildToggle {
  display: flex;
  flex: 1;
}
.containerGrandChildToggle {
  flex: 1;
  transition: 0.4s;
}
.headerContainer {
  display: flex;
  gap: 20px;
  align-items: center;
}
header * {
  flex: 1;
}
h3 {
  color: white;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  background: rgb(3, 2, 0);
  display: flex;
  align-items: center;
  height: 70px;
  transition: color 6s;
}
h3{
  @Starting-style{
    color: black;
  }
}

code {
  text-shadow: none;
  color: rgb(15, 4, 4);
  font-size: 10px;
  padding: 10px;
  text-shadow: -1px 1px 3px white;
}
.dimension {
  color:rgba(255, 255, 255, 0.7);
  font-weight: bolder;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  background: linear-gradient(to right, rgb(15, 11, 1), rgb(53, 46, 5));
  border: none;
  padding: 19px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 70px;
  max-width: 140px;
}
@keyframes resize{
  from{scale : 1}
  to{scale : 1.5}
}
.indicator{
  width: 10px;
  height: 10px;
  font-size: 4px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 3.5px;
  color: white;
  background: linear-gradient(pink, coral, gold);
  border-radius: 5px;
  position: absolute;
  top: 58px;
  right: 50px;
  animation: resize 1s cubic-bezier(0.5, 1, 1, 0.8) infinite alternate;
}
.d{
  font-size: 11px;
  font-weight: bolder;
}
.backgroundColorCon {
  display: flex;
  gap: 9px;
}
.mulBgColor {
  background: linear-gradient(
    white,
    purple,
    yellow,
    blue,
    red,
    green,
    gold,
    maroon,
    teal,
    coral,
    white
  );
  color: white;
  font-weight: 700;
  font-family: Sans-Serif;
  border: none;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
  padding: 15px;
  flex: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.singleBackgroundColor {
  flex: 1;
  font-size: 8px;
  background: linear-gradient(
    rgb(200, 200, 200),
    rgb(150, 150, 150),
    rgb(100, 100, 100),
    rgb(60, 60, 60),
    rgb(0, 0, 0)
  );
  .defaultActivated, .randomActivated, .singleActivated{
    font-size: 14px;
  }
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 200px) and (max-width: 300px) {
  .content {
    min-width: 100px;
    max-width: 200px;
  }
}
