body {
font-family: "Poppins", sans-serif;
}
.notice-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 10015;
}
.notice-box {
background: white;
padding: 2rem;
border-radius: 1rem;
max-width: 400px;
width: 90%;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
text-align: center;
animation: slideIn 0.4s ease-out;
}
.notice-box h3 {
margin-top: 0;
color: #333;
font-weight: 600;
}
.notice-box p {
font-size: 1.1rem;
color: #555;
font-weight: 400;
}
.notice-box button {
margin-top: 1.5rem;
padding: 0.5rem 1.2rem;
font-size: 1rem;
background: #000;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 500;
transition: background 0.3s ease;
}
.notice-box button:hover {
background: #555;
color: #fff;
}
@keyframes slideIn {
from {
transform: translateY(-20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
|