body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: none;
    color: #333;
}
body h1{
    color: #177788;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}
.containers {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    gap: 1rem;
}
/* Left Section */
.content-left {
    width: 60%;
    padding: 20px;
    border: 3px solid #177788;
}
.announcement-text {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: end;
    background-size: cover;
    background-position: center;
    border-radius: .1rem;
}
.announcement-text::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(37, 37, 37, 0.6);
    height: auto;
    z-index: 1;
}
.announcement-paragraph {
    font-size: 1rem;
    color: #fff;

    text-align: start;
    z-index: 2;
    position: relative;
}
.announcement-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: start;
    z-index: 2;
    position: relative;
    
    /* Apply gradient color to the text */
    background-image: linear-gradient(to right, rgb(84, 173, 255), rgb(4, 234, 4), orange); /* Gradient from green to orange to blue */
    -webkit-background-clip: text; /* Clip the gradient to the text */
    color: transparent; /* Make the text color transparent to show the gradient */
}


/* Right Section */
.content-right {
    width: 40%;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 500px;
}

/* Update List */
.update-list {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: start;
    flex-direction: column;
    gap: 1rem;
}
.update-item {
    height: 100%;
    min-height: 150px;
    position: relative;
    overflow: none;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 2;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.update-item::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(37, 37, 37, 0.7);
    height: auto;
    z-index: 1;
}
.update-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: orange;
    z-index: 2;
    position: relative;
}
.update-item p {
    z-index: 2;
    font-size: .8rem;
    color: #fff;
    position: relative;
}
.update-item.all {
    display: block;
}