html {
  font-size: 10px; /* px означає 'пікселі': базовий розмір шрифта встановлюється рівним 10 пікселів заввишки  */
  font-family: Roboto
}
h1 {
  font-size: 60px;
  text-align: center;
  margin: 0;
  padding: 10px 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; /* Отступ первой строки в пикселах */
}
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;
}
.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; /* цвет выделения */
  }
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: -13px;
}
.arrow::before {
  content: "\20D7";
  position:  relative;
  top: -10px;
  left: 15px;
}