@font-face {
  font-family: "Roboto1";
  src: url("/fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}

/*для страниц шириной 0..1099 px*/
@media screen and (max-width: 1099px) {
  .narrow-pages {
    display: block;
    width: 360px;
    margin: auto;
  }
  .wide-pages {
    display: none;
  }
}
/*-для страниц шириной 0..1099 px*/

/*для страниц шириной 1100..хххх px*/
@media screen and (min-width: 1100px) {
  .narrow-pages {
    display: none;
  }
  .wide-pages {
    display: block;
  }
}
/*-для страниц шириной 1100..хххх px*/


.button {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 21px;
  background-color: #e0201b;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

.narrow-pages {
  width: 360px;
}

a.button:hover {
  text-decoration: none;
}

/*div {*/
/*  border: solid 1px red;*/
/*}*/

div, span, a, input, h1, h2, h3, h4 {
  font-family: Roboto1, sans-serif;
}

#topline-userbutton {
  color: steelblue;
  display: none;
}