@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap&subset=cyrillic');

*:focus {
  outline: none;
}

::selection {
  color: white;
  background: rgb(160, 160, 160);
}

body {
  margin: 0px;
  padding: 0px;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: 600; */
  font-style: normal;
  background-color: #d0cfcd;

  --min-screen-size: 1024;
}

.title {
  font-size: 3.5rem;
  text-align: center;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

::-webkit-scrollbar-button {
  display: none;
}