<head>
<style>
body {
overflow: hidden;
}
.notice-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
}
.notice-message {
background-color: white;
padding: 30px;
width: 70%;
max-width: 400px;
text-align: center;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
position: relative;
}
.notice-message-text a {
color: #0979FF;
text-decoration: none;
}
.notice-message-text a:hover {
font-weight: bold;
}
</style>
</head>
<body>
<div class="notice-overlay">
<div class="notice-message">
<div class="notice-message-text">
<h3>'플루토 컨설팅' 홈페이지 리뉴얼!</h3>
<p>더 나은 서비스와 정보를 제공하기 위해 홈페이지가 새롭게 개편되었습니다.</p>
<p>아래 링크를 클릭하여 새로운 플루토 컨설팅 홈페이지로 이동해 주세요.</p>
<p><a href="<https://pluto-consulting.oopy.io/>">[플루토 컨설팅 홈페이지로 이동하기]</a></p>
</div>
</div>
</div>
</body>