:root {
  --theme-bg-color: #F8F1DE;
  --primary-color: #F5D7D5;
  --secondary-color: #6D6050;
}

@font-face {
  font-family: cuteFont;
  src: url("../font/SourGummy-VariableFont.ttf");
}

#cute-theme {
    background-color: var(--theme-bg-color);
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "cuteFont";
    color: var(--secondary-color);
}

.orbiter {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10%;
}

/* Orbit container */
.orbit {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit .header {
    position: absolute;
    top: -8%; left: 0%;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}

.orbit-line {
    position: relative;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit-line-back {
    position: absolute;
    width: 130%;
    height: 100%;
    border: 5px solid var(--secondary-color);
    border-bottom: 0px;
    border-radius: 50%;
    transform: rotateX(70deg) rotateZ(-30deg);
    z-index: 1;
}
.orbit-line-front {
    position: absolute;
    width: 130%;
    height: 100%;
    border-bottom: 5px solid var(--secondary-color);
    border-radius: 50%;
    transform: rotateX(70deg) rotateZ(-30deg);
    z-index: 3;
}

/* Center circle */
.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--secondary-color);
  box-shadow: 1px 1px 0px 1px var(--secondary-color);
  z-index: 2;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Orbit items */
.orbit-item {
  position: absolute;
  width: 15%;
  aspect-ratio: 1;
  box-shadow: 2px 2px 0px 2px var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-color);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Positioning orbit items */
.item-1 {
  top: 33%;
  right: 5%;
  width: 8%;
  animation-delay: 0s;
}

.item-2 {
  top: 45%;
  right: 8%;
  animation-delay: 0.5s;
  z-index: 4;
}

.item-3 {
  top: 56%;
  left: 8%;
  animation-delay: 1s;
  z-index: 4;
}

.item-4 {
  top: 47%;
  left: 3%;
  width: 8%;
  animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.cloud {
  position: relative;
  background-color: var(--primary-color);
  padding: 30px 5px;
  padding-top: 100px;
}

.cloud-border-top, .cloud-border-bottom {
  position: absolute;
  left: 0%;
  width: 100%;
  height: 30px;
  background-image: url("../img/cute-theme/cloud-border.png");
}
.cloud-border-top {
  top: 0%;
  transform: scaleY(-1);
}
.cloud-border-bottom {
  bottom: 0%;
}

.cloud-header {
  position: absolute;
  top: 45px; left: 50%;
  transform: translateX(-50%);
  background-color: var(--theme-bg-color);
  font-size: 1.3rem;
  box-shadow: 2px 2px 0px 2px var(--secondary-color);
  padding: 2px 10px;
  border-radius: 50%;
}
.cloud-header:empty {
   display: none;
}

.cloud-main {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.cloud-main .img-contain {
  min-width: none;
  overflow: hidden;
  border-radius: 30px;
  margin: 0px 5px;
  box-shadow: 1px 1px 1px 1px var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.cloud-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cloud-text {
  font-size: 1rem;
  text-align: center;
  padding: 20px 10px;
}
.cloud-text:empty {
   display: none;
}


.frames {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 40px;
}
.frame {
  flex-basis: 40%;
  max-width: 250px;
  height: fit-content;
  overflow: hidden;
  box-sizing: border-box;
  border: 2px solid var(--secondary-color);
  box-shadow: 1px 1px 1px 1px var(--secondary-color);
  border-radius: 10rem 10rem 10px 10px;
  margin-left: 6.6%;
  margin-bottom: 20px;
  padding: 10px;
}
.frame .img-contain {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
.frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.frame .text {
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}
.frame .text:empty {
   display: none;
}


.footer {
  position: relative;
  background: var(--secondary-color);
  color: var(--theme-bg-color);
  padding: 20px;
}
.footer .createOwn {
  font-size: 1.5rem;
  display: inline-block;
}
.createOwn .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 2px 5px;
  border-radius: 10px;
  margin-top: 5px;
  border: 2px solid var(--theme-bg-color);
  box-shadow: 1px 1px 1px 1px var(--theme-bg-color);
}
.orgName {
  font-size: 3rem;
  margin-top: 20px;
}
.orgDetails {
  font-size: 1rem;
  margin: 10px 0px;
}
.orgDetails span {
  margin-left: 10px;
}