* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url("/img/bg-step.webp") no-repeat center / cover;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    sans-serif;
}
.container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
}
.container .content {
  width: 100%;
  max-width: 86%;
  padding-top: 100px;
  margin-top: 30px;
}
.content .title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.content .actions {
  width: 365px;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
}
.link-btn-wrapp {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: rgba(228, 209, 209, 0.85);
  border-radius: 10px;
  color: #db136c;
}
.link-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(to right, #961403 0%, #f05757 100%);
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: scale 0.3s;
}
.link-btn:hover {
  scale: 0.95;
}
.sidebar {
  color: #000;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
  text-align: center;
}

.sidebar a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .container .content {
    width: 100%;
    max-width: 90%;
    padding-top: 0;
  }
  .content .actions {
    width: 470px;
  }
}
@media (max-width: 600px) {
  .content .actions {
    width: 90%;
  }
}
