/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 27 2023 | 18:49:09 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
}
.circle-container {
  width: 700px; /* Adjust the size of the circle */
  height: 700px;
  border: 3px dotted rgba(255, 205, 60, 0.65);
  animation: circularBorderColorChange 3s infinite;
  border-radius: 50%; /* Make it a circle */
  position: relative; /* Allows absolute positioning of elements */
  transition: all 0.3s;
}

.element {
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #ffcd3c;
  border: 1px solid black;
  box-shadow: 4px 4px 0px black;
  position: absolute;
  border-radius: 100%;
  --angle: calc(60deg * (var(--n) - 1));
  --radius: 350px;
  top: calc(50% - 50px - var(--radius) * cos(var(--angle)));
  left: calc(50% - 50px + var(--radius) * sin(var(--angle)));
}
.main-element {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: fit-content;
  height: fit-content;
  max-width: 390px;
  max-height: 390px;
  min-width: 350px;
  min-height: 350px;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #faee87;
  padding: 50px;
  border-radius: 100%;
  border: 1px solid black;
  box-shadow: 4px 4px 0px black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-element span {
  color: #555;
  font-family: Jost;
  font-weight: 500;
  vertical-align: middle;
	font-size: 16px;
    line-height: 140%;
}
.element-main-element {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* Adjust the size of elements */
  height: 80px;
  background-color: #ffcd3c; /* Adjust element color */
  border: 1px solid black;
  box-shadow: 2px 2px 0px black;
  position: absolute;
  border-radius: 100%;
  font-family: Jost;
  transform: translateX(0%) translateY(-190px);
}
.element p {
  font-family: "P22 Mackinac", Sans-serif;
  border: 0px !important;
  position: absolute;
  margin-top: 200px;
  width: 200px;
  text-align: center;
  color: #555;
  font-size: 20px;
  font-weight: bold;
  transform: rotate(0deg); /* Keep the text upright */
  animation: none; /* Remove any animation from the text */
}
.element img,
.element-main-element img {
  width: 35px;
}
.element:nth-child(1) {
  --n: 1;
}

.element:nth-child(2) {
  --n: 2;
}

.element:nth-child(3) {
  --n: 3;
}

.element:nth-child(4) {
  --n: 4;
}

.element:nth-child(5) {
  --n: 5;
}

.element:nth-child(6) {
  --n: 6;
}
@keyframes circularBorderColorChange {
  0% {
    border-color: #faee87; /* Red */
  }

  50% {
    border-color: #ffcd3c; /* Blue */
  }

  100% {
    border-color: #faee87; /* Red */
  }
}
