body {
  background-color: black;
  color: white;
  padding-bottom: 50px;
}
h1 {
  font-family: "Rubik";
  color: white;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}
h1 a {
  text-decoration: none;
  display: inline-block;
  font-size: 45px;
  color: white;
  transition: 0.2s;
}
h1 a:hover {
  text-decoration: none;
  color: rgba(11, 99, 200, 1);
  transform: scale(1.05);
}
h2 {
  color: white;
  text-align: center;
  font-size: 40px;
  text-shadow: 0.5px 0.5px 0.5px black;
}
h3 {
  font-family: "Rubik";
  text-align: center;
}
.block {
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  padding: 10px 10px 20px 10px;
}
.block p {
  font-size: 20px;
  margin-bottom: 0px;
  padding: 5px 10px;
}
.no-select {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Стандартный синтаксис */
}
.link {
  font-family: "Rubik";
  border: 1px solid blue;
  text-decoration: none;
  font-size: 25px;
  color: white;
  text-align: center;
  display: inline-block;
  padding: 20px 10px;
  margin: 15px 0px;
  border-radius: 25px;
  background-color: #1a1a1a;
  box-shadow: 0 5px 5px 0 blue;
  transition: 0.3s;
  text-shadow: 1px 1px 1px black;
}
.link:hover {
  text-decoration: none;
  color: white;
  transform: translate(0,-4px);
  box-shadow: 0 10px 10px 0 blue;
}
.link:active {
  transform: translate(0,0px);
  box-shadow: 0 5px 10px 0 blue;
  transition: 0.1s;
}
.zoom-img {
  width: 200px;
  cursor: pointer;
  transition: 0.3s;
}

.zoom-img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2.3);
  z-index: 9999;
}
body.zoom-active::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
}