body, html {
    color: #000;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12) 0%, rgba(254, 243, 199, 0.18) 100%);
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 100px;
    font-size: 2rem;
    color: #000;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 20px;
}

/* Notice container */
.notice-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* Notice image styling */
.notice-image-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.notice-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.notice-image:hover {
    transform: scale(1.02);
}

/* Responsive design */
@media (max-width: 768px) {
    .notice-container {
        padding: 15px;
    }

    .notice-image-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .notice-container {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
        margin-top: 80px;
    }

    .notice-image-container {
        height: 200px;
    }
}

