html,
body {
  height: 100%;
  width: 100%;
}

html {
  font-family: 'Bai Jamjuree', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.notification {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 630px;
  width: 100%;
  padding: 32px 24px 24px 24px;
  margin: 12px;
  border-radius: 12px;
  border: 8px solid #1f2225;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #151719;
  background-image: radial-gradient(50% 82.4% at 50% 0%, rgba(255, 199, 0, 0.11) 0%, rgba(0, 0, 0, 0) 100%);
}

.notification::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/pattern.png');
  background-size: contain;
  pointer-events: none;
  opacity: 0.5;
}

.text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  max-width: 430px;
  color: #848b8d;
  margin: 16px 0px 28px;
}

.button {
  border-color: transparent;
  letter-spacing: 1px;
  border-radius: 4px;
  font-size: 14px;
  background-color: rgb(255, 199, 1);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 1rem,
    rgba(21, 23, 25, 0.1) 0px,
    rgba(21, 23, 25, 0.1) 2rem
  );
  font-weight: 700;
  color: rgb(31, 34, 37);
  padding: 12px 64px;
  text-decoration: none;
}

.button:hover,
.link:hover {
  opacity: 0.5;
  cursor: pointer;
}

.link {
  color: rgb(255, 199, 1);
  text-decoration: underline;
}
