.notice-container {
  background-image: var(--background-image);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  color: var(--baseFg);
  padding: 10px;
}

.notice-name h1 {
  font-size: 26px;
  font-weight: 500;
}

.notice-sub-title {
  font-size: 14px;
  color: var(--noice-btn);
  font-weight: 800;
  margin-bottom: 3px;
}

.notice-content {
  max-width: 60%;
}

.notice-content-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.notice-content-button p {
  margin: 0;
  font-size: 14px;
}

#register-notice {
  font-weight: 700;
  font-size: 14px;
  box-shadow: none;
}

@media screen and (max-width: 1200px) {
  .notice-content {
    max-width: 100%;
  }
}

@media screen and (max-width:820px) {
  .notice-content-button p {
    width: 100%;
  }
}

@media screen and (max-width:485px) {
  #register-notice {
    width: 100%;
  }
}