/* Animated Text Sphere  */

.sphere__container {
  position: relative;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  max-width: var(--max-width); 
 
}

.sphere__container .content1 h2,
.sphere__container .content2 h2 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: var(--step-1);
  color: var(--primary-color);
  font-weight: bold;
  /* text-transform: uppercase; */
}

.sphere__container .tagcloud {
  position: relative;
  max-width: var(--max-width);
  font-size: var(--step-0);

  /* font-weight: 650; */
  /* margin-left: 30%; */
  /* margin-top: 5%; */
}
.sphere__container .tagcloud--item:hover {
  color: #36454f;
}

/*: Smartphone styles */

@media (max-width: 500px) {
  .sphere__container {
    flex-direction: column;
  }
}
