
.update_notification{
    position: fixed;
    left:0;
    right: 0;
    bottom: -25%;
    width: 100%;
    height: 25%;
    transition: bottom 300ms;
    background-color: #6BFF7A;
    z-index: 150;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}
.update_notification p{
    font-family: Sansation;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
    letter-spacing: 0.025em;
    text-align: left;
    color: #2D2D2D;
}
.update_notification_visible{
    bottom: 0;
}
.update_notification:hover{
    cursor: pointer;
}

@media screen and (max-width: 650px){
    .update_notification p{
        font-size: 1rem;
    }
}