html {
  font-size: 10px; /* px означає 'пікселі': базовий розмір шрифта встановлюється рівним 10 пікселів заввишки  */
  font-family: Roboto;
}
h1 {
  font-size: 60px;
  text-align: center;
  margin: 0;
  color: #00539F;
  text-shadow: 3px 3px 1px black;
}
h2 {
  font-size: 50px;
  text-align: center;
  color: rgba(0, 159, 31, 0.94);
}
h3 {
  font-size: 40px;
  text-align: center;
  color: rgba(159, 0, 141, 0.94);
}
h4, caption {
  font-size: 35px;
  text-align: center;
}
p {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0px;
  text-align: justify; /* Вирівнювання за шириною */
  text-indent: 40px; /* Отступ первой строки в пикселах */
}
Ul {
  margin: 0px 0px 0px 20px;
}
li, td {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0px;
  text-align: justify; /* Вирівнювання за шириною */
}
a {
  font-size: 25px;
  text-align: center;
  text-decoration: none; /* Отменяем подчеркивание у ссылки */
}
html {
  background-color: rgba(216, 201, 151, 0.863);
}
body {
  margin: 0 auto;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}
img {
  margin: 0 auto;
}
td {
    padding: 10px; /* Поля в ячейках */
    text-align: center;
}
.image-align {
    text-align: center;
    margin: 10px;
}
.tab {
    margin-left: 50px;
}
.colortext {
     color: red; /* цвет выделения */
   }
.colortext2 {
     color: orange; /* цвет выделения */
   }
.colortext3 {
     color: Yellow; /* цвет выделения */
   }
.colortext4 {
     color: green; /* цвет выделения */
   }
.colortext5 {
    color: aqua; /* цвет выделения */
  }
.colortext6 {
    color: blue; /* цвет выделения */
  }
.colortext7 {
    color: purple; /* цвет выделения */
  }
  .colortext8 {
    color: rgb(176, 9, 78); /* цвет выделения */
  }
button {
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#00BBD6), to(#fcf323));
    border: 1px solid #666;
    height:75px;
    width:210px;
   }
aside {
    width: 50%;
    padding-left: .5rem;
    margin-left: .5rem;
    float: right;
    box-shadow: inset 5px 0 5px -5px #29627e;
    font-style: italic;
    color: #29627e;
}
aside > p {
  margin: .5rem;
}
.arrow {
  margin-left: 2px;
}
.arrow::before {
  content: "\20D7";
  position:  relative;
  top: -3px;
  left: 12px;
}
table, th, td {
  border: 1px solid black;
}
.text {
  font-family: Bell MT;
  font-size: 30px;
}
.text1 {
  font-family: Bell MT;
  font-size: 40px;
}
.test {
  position: relative;
  display: flex;
  justify-content: space-between;
  top: 10px;
  border: 3px solid rgb(100, 75, 243);
  border-radius: 10px;
  padding: 5px;
  margin: 10px 200px 30px 200px;
  z-index: 1;
  background-color: rgba(250, 238, 177, 0.863);
}
.orbit {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 47.1875em; 
  width: 47.1875em;
  border-radius: 50%;
  overflow: hidden;
  background-image: radial-gradient( #f20b0b00 calc(66% - 2px), #294febd8 calc(66% - 1px), #0000 calc(66%));
  filter: drop-shadow(0 0.3125em 0.3125em #043e2466);
  /* Масштаб фигуры */
  font-size: clamp(1px, calc(50vh / 48), calc(50vw / 48));
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0; z-index: 1;
  animation: spin linear infinite;
}
.orbit::before {
  background-image: radial-gradient( circle closest-side at 50% 1.6875em, #ee0e0e 1.25em, #0000 1.3125em);
  animation-duration: 3s;
}
.orbit::after {
  background-image: radial-gradient( circle closest-side at 50% 1.6875em, #510ef9 0.625em, #0000 0.6875em);
  animation-duration: 2s;
}
@keyframes spin { to { transform: rotate(1turn); } }
.frac { 
  display: inline-block;
  position: relative;
  vertical-align: middle;
  letter-spacing: 0.001em;
  text-align: center;
  font-size: 25px;
}
.frac > span {
  display: block;
  padding: 0.1em;
}
.frac span.bottom {
  border-top: thin solid black;
}
.frac span.symbol {
  display: none;
} 
