#nav-notices {
    color: var(--color1) !important;
}

.home-section-1 {
    width: 100%;
    padding-top: 90px;
}

.notice-intro {
    height: 100%;
    width: 100%;
    background-color: var(--color8);
    color: var(--color4);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.notice-intro h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.notice-board {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 50PX;
}

.notice-board h1 {
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.notice-board .notice {
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    color: var(--color3);
    display: none;

}

.notice-board .notice-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color2);
}

.notice-board .notice-date {
    color: var(--color6);
    font-size: 0.9em;
    margin-bottom: 20px;
}

.notice-board .notice-content {
    font-size: 1em;
    line-height: 1.5;
    color: var(--color3);
}

.notice-board .notice-content a {
    color: var(--color1);
    text-decoration: none;
}

.notice-content i {
    margin-right: 10px;
    margin-top: 10px;
}

.notice-board .notice-content a:hover {
    text-decoration: underline;
}

.view-more {
    height: fit-content;
    width: fit-content;
    padding: 10px 100px;
    border-radius: 25px;
    color: var(--color4);
    background-color: var(--color2);
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
}

.view-more:hover {
    background-color: var(--color1);
}