/** @format */

@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro&display=swap");

body {
  height: 100vh;
  width: 100vw;
  margin: 0px;
  clear: both;

  font-family: "Anonymous Pro", "Monospace";
  font-size: 15px;
  font-weight: bold;
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  /*background-image: linear-gradient(135deg, #007eea 0%, #764b00 100%);*/
}

h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: bold;
}

ul,
li {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: bold;
}

.container {
  display: flex;
  clear: both;
}

#circular-text {
  font-weight: 900;
  flex: 1;
  position: relative;
  background: darkgoldenrod;
  color: #000;
  border-radius: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.95);
  padding: 10px;
  animation: animate 20s linear infinite;
}

#circular-text span {
  display: flex;
  left: 5px;
  top: 4px;
  position: absolute;
  /*transform-origin: top left;*/
}

#circular-text2 {
  display: flex;
  flex: 1;
  position: relative;
  background: darkolivegreen;
  color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.95);
  padding: 10px;
}

#circular-text2 span {
  left: 5px;
  display: flex;
  top: 4px;
  position: absolute;
  /*transform-origin: top left;*/
}
