body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: darkcyan;
}
header {
    /* background-color: rgb(183, 229, 255); */
    color: rgb(3, 73, 73);
    padding: 10px;
    text-align: center;
    height: 110px;
    background: url("./clouds_sky.jpg") no-repeat;
    background-size: 100%;
    background-position: center;
}
header > h1 {
    text-shadow: 0 0 10px #ffffff;
}
header > h2 {
    text-shadow: 0 0 10px #ffffff;
}
footer {
    background-color: black;
    color: cyan;
    text-align: center;
    padding: 10px;
    margin: 0px;
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 40px;
    display: flex;
}
footer > div {
  flex:1;
  /* color: rgb(9, 182, 182); */
}
.column1 {
    text-align: center;
    margin: -5px 0 0 0;
    padding-left: 10px;
    font-size: 12px;
    color: rgb(9, 182, 182);
}
.column2 {
    text-align: center;
    margin: -20px 0 0 0;
    /* padding-right: 20px; */
    font-size: 20px;
    color: rgb(140, 153, 153);
    text-shadow: 0 0 10px #fff;
}
.column3 {
    text-align: right;
    /* margin: -5px 0 0 0; */
    padding-right: 50px;
    font-size: 14px;
    color: rgb(9, 182, 182);
}

/* Контейнер карты и легенды*/
.container {
    display: flex;
    flex: 1;
    margin: 10px;
    padding-bottom: 50px;
    position: absolute; /* Наверное не лучший вариант авто-высоты, но здесь рабочий*/
    top:130px;
    bottom:10px;
    left:0;
    right:0;
}
/*Легенда*/
.sidebar {
    /* height: 100%; */
    width: 300px;
    border-color: azure;
    border-style: solid;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}
li img {
    vertical-align: middle;
}
li {
    list-style-type: none;
    color: azure;
    text-shadow: 0 0 10px rgb(0, 59, 56);
}
h3 {
    color: rgb(0, 0, 0);
    text-align: center;
    text-shadow: 0 0 10px #fff;
}
.cb {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}
h4 {
    font-size: 24px;
    text-align: center;
    color:darkcyan;
}
.key {
    width: 200px;
    color: brown;
    font-weight: bold;
 }
.attrs {
    color: darkcyan;
}
.info1 {
    text-align: center;
}
.info2 {
    font-size: 12px;
    text-align: center;
}
/*Карта*/
.map {
    flex: 1;
    position: relative;
    height: calc(100vh-120px);
    border-color: azure;
    background-color: azure;
    border-style: solid;
    border-radius: 6px;
    margin-left: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}
/*Weather iFrame*/
.weather_iframe {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 390px;
    height: 250px;
    border: none;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 139, 139, 0.6);
}

