body {
    margin: 0;
    padding: 0;
    background-color: #B48A78;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }

  .notice-container {
    margin: 30%;
    padding: 40px;
    border: 2px double #8b5e3c;
    background-color: #ffffffcc;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 12px;
  }

  .notice-container h1 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #5b3c2d;
    letter-spacing: 2px;
  }

  .notice-container p {
    font-size: 18px;
    color: #6b4f3a;
    line-height: 1.8;
  }

  .seal {
    margin-top: 30px;
    font-size: 24px;
    color: #874897;
    letter-spacing: 3px;
  }

  .seal:hover{
    transform: translateY(-5px);
  }


@media (max-width :600px){
  .notice-container{
    max-width: 300px;
  }

  .notice-container h1{
    font-size: 18px;
  }

  .notice-container p{
    font-size: 10px;
  }

  .seal {
    font-size: 16px;
  }
}