.alert_body
{
    position: fixed;
    top: 0;
    left: 0;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.alert_announcements{
    width: 512px;
    height: 664px;
    background: linear-gradient(45deg,#97C634,#344D00);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset,
    rgba(0, 0, 0, 0.4) 0px 30px 90px;;
}
.alert_announcements::before{
    content: 'DUYURU';
    position: absolute;
    color: transparent;
    -webkit-text-stroke: 3px #ffffff52;
    text-stroke: 3px #ffffff52;
    font-weight: bold;
    font-size: 9em;
    z-index: -2;
    opacity: 0.3;
    transform: rotate(-45deg);
}
.alert_announcements .bg{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90%;
    height: 90%;
    gap: 20px;
    border: 9px solid #00000041;
}

.title_announcements{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.title_announcements span{
    position: absolute;
}

.title_announcements .hg {
    font-weight: bold;
    font-size: 48px;
    color: transparent; 
    -webkit-text-stroke: 1px #ffffff52;
    text-stroke: 1px #ffffff52; 
    z-index: 1;
}


.title_announcements .ttitle{
    color: white;
    z-index: 2;
    font-weight: 800;
    font-size: 36px;
}

.comment_announcements{
    font-weight: 300;
    color: white;
    line-height: 1.2;
    width: 90%;
}

.alert_announcements a{
    padding: 7px 25px;
    border: 3px solid #344D00;
    color: #344D00;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.25s ease-in-out,border 0.25s ease-in-out;
}

.alert_announcements a:hover{
    border:3px solid white;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}