

#announcement-inject {
    background-color: #ffffff00;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 3vh 5vh 5vh 5vh;
    transition: background-color 3s ease-in-out;
    z-index: 1000;
}

#announcement-inject.active {
    background-color: #ffffffcc;
}

#announcement {
    height: unset;
    width: 100vw;
    padding: 0;
    aspect-ratio: 2.15;
    transform: translateY(100vh);
    transition: transform 3s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.6) 0px 0vh 6vh 0px;

}

#announcement-inject.active #announcement {
    transform: translateY(0);
}
