body {
  margin: 0px;
  display: flex;
  width: auto;
  flex-direction: column;
  font-family: "Padauk", sans-serif;
  text-align: justify;
}
.title-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  width: auto;
  margin: 0px;
  background-color: black;
  color: white;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  margin: 0px 10px;
}

.main-content {
  width: 320px;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.bold-text {
  padding: 20px;
  background-color: rgb(161, 5, 5);
  margin: 10px 0px;
  border-radius: 5px;
  font-size: 14pt;
  font-weight: bold;
  line-height: 1.8;
  color: white;
  text-align: center;
  box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.24);
}

.download-button {
  width: auto;
  height: 60px;
  margin: 20px 0;
  border-radius: 10px;
  background-color: rgb(28, 101, 134);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration-line: none;
  font-size: 18pt;
  color: white;
}

.download-button:hover {
  background-color: rgb(1, 126, 203);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.353);
  color: white;
}

.link-button {
  width: auto;
  height: 40px;
  margin: 20px 0;
  border-radius: 10px;
  background-color: rgb(192, 12, 90);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration-line: none;
  font-size: 12pt;
  color: white;
}

.link-button:hover {
  background-color: rgb(232, 2, 105);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.353);
  color: white;
}

.viber-button {
  width: auto;
  height: 40px;
  margin: 10px 0;
  border-radius: 10px;
  background-color: rgb(129, 4, 135);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration-line: none;
  font-size: 12pt;
  color: white;
}

.viber-button:hover {
  background-color: rgb(168, 18, 255);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.353);
  color: white;
}

.telegram-button {
  width: auto;
  height: 40px;
  margin: 10px 0;
  border-radius: 10px;
  background-color: rgb(47, 116, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration-line: none;
  font-size: 12pt;
  color: white;
}

.telegram-button:hover {
  background-color: rgb(0, 162, 255);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.353);
  color: white;
}
.floating-button {
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 20px;
}

.footer {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background-color: rgb(58, 58, 58);
  color: white;
}
