html
{
  height: 100vh;
}

aside
{
  max-width:250px;
  width:100%;
  background-color:#bdf5ef;
height: -webkit-fill-available;
  overflow:hidden;
}

main
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: center;
}

header
{
  background-color:#77a9d1;
  color:white;
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding:10px;
width: -webkit-fill-available;
}

#logo
{
  background-image:url("logo.png");
  width:64px;
  height:64px;
  background-size:contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.centertext
{
 text-align:center;
}

.padding5px
{
  padding:5px;
}


.inline
{
display:inline;
}

.nobullets
{
list-style-type: none;
}

ul
{
  margin: 0;
}

body
{
  margin:0;
  padding:0;
  font-family:arial;
    word-break: break-word;
  text-align:center;
}


/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font-family: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}