* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.notice-container {
  position: absolute;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px;
  gap: 20px;
  width: 80%;
  min-height: 50%;
  background: #FFFFFF;
  box-shadow: 0px 0px 24px 4px rgba(185, 220, 234, 0.5);
  border-radius: 32px;
}
.logo {
  width: 290px;
}
.notice-container p {
  color: #333333;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
}
.notice-container .title {
  color: #214A8A;
  font-size: 36px;
}
@media (max-width: 991.98px) {
  .notice-container {
    width: 90%;
    padding: 16px;
    gap: 14px;
  }
  .logo {
    width: 200px;
  }
  .notice-container p {
    font-size: 14px;
  }
  .notice-container .title {
    font-size: 24px;
  }
}