html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: arial, sans-serif;
  display: inline;
  height:1250px;
  max-width:2000px;
  margin:0 auto;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }

.header-img {
  width:350px;
  display: block;
  margin: 40px auto 0 auto;
}
h1{
    color:#757575;
    font-size:3em;
}
.container {
  position: relative;
  text-align: left;
  top: 0vh;
  width:100%;
}

.buttons {
  display: inline-block;
  position: relative;
}

.btn {
  position: relative;
  border: 1px solid white;
  padding: 13px 16px;
  margin: 11px 4px;
  background-color: green;
  font-weight: bold;
  font-size:1em;
  color: white;
  border-radius: 2px;
  min-width: 170px;
}

.btn:hover {
  background: green;
  border: 1px solid white;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  color: white;
  cursor: pointer;
}

.input {
  border: 1px solid #C1C1C1;
  padding: 13px 16px;
  margin: 11px 4px;
  width: 400px;
  font-size:1em;
  background-color: #fff;
  border-radius: 2px;
}

.input:focus {
    border: 1px solid green;
    cursor: pointer;
}

input:focus {
  outline: none;
}

.search {
width: 50%; /* ширина нашего блока */
float: left;
margin-left:10%;
}

.lenta {
max-height: 300px; /* высота нашего блока */
max-width: 400px; /* ширина нашего блока */

height: 40%; /* высота нашего блока */
width: 100%; /* ширина нашего блока */


padding: 5px; /* Отступ внутри div */


margin-right:5%;
background: #fff; /* цвет фона, белый */
float: right;
text-align:right;
border: 1px solid #C1C1C1; /* размер и цвет границы блока */
overflow-x: scroll; /* прокрутка по горизонтали */
overflow-y: scroll; /* прокрутка по вертикали */
}
a {
 text-decoration: none; /* Отменяем подчеркивание у ссылки */
} 
.copy{
    text-align:center;
    position: fixed; /* Фиксированное положение */
    left: 0; bottom: 0; /* Левый нижний угол */
    background: #39b54a; /* Цвет фона */
    color: #fff; /* Цвет текста */
    width: 100%; /* Ширина слоя */
    height:45px;
}

table {
border: 0px solid green;
border-collapse: separate;
empty-cells: hide;
margin:0 auto;
padding-bottom:1000px;
}
th, td {border: 1px solid green;}

a.list{
 text-decoration:none;
 color:black;
}
a.list:hover{
background:#f5f5f5;
color: green;
box-shadow: inset 0 0 0 3px #3a7999;
}


.blink {
  animation-name: blinker;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  animation-duration: 1.1s;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  -webkit-animation-duration: 1.1s;
}
 
@keyframes blinker {
  from { opacity: 0.7; }
  to { opacity: 1.0; }
}
 
@-webkit-keyframes blinker {
  from { opacity: 0.7; }
  to { opacity: 1.0; }
}



@media screen and (max-width: 900px) {
    .input {
      width: 100%;
    }
    html {
      height:1400px;
    }
    .container {
     text-align: center;
    }
    .search {
    width: 100%; /* ширина нашего блока */
    margin-left:0;
    }
    .btn{
    width: 90%; /* ширина нашего блока */
    }
    .lenta {
    max-width: 100%; /* ширина нашего блока */
    float: center;
    text-align:center;
    margin-left:0px;
    margin-right:0px;
    }

    
    a.list{
        float: center;
        text-align:center;
     text-decoration:none;
     color:black;
    }
    a.list:hover{
    background:#f5f5f5;
    }

}
