body, html {
  height: 100%;
  margin: 0;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
}

.container {
  overflow: auto;
  position: relative;
  height: 100%;
}

.container::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: -2;

  display: block;
  background: url(bg.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100%;

  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}

.backdrop {
  opacity: .5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.16);
  border-radius: 16px;
  padding-top: 8px;
  width: 328px;
  height: 170px;
}

.modal h1 {
  font-size: 19px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin: 16px 24px;
}

.modal a {
  display: block;
  margin: 16px 0 24px 24px;
  padding: 9px 16px;
  width: 136px;
  height: 42px;
  border-radius: 8px;
  float: left;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  color: rgba(21, 25, 32, 0.5);
  border: 1px solid rgba(86, 103, 137, 0.26);
  box-sizing: border-box;
}

.modal a + a {
  margin-left: 8px;
  margin-right: 24px;
  color: #FFFFFF;
  background: #01875F;
  border: none;
}
