.notification_bar {
    position: relative;
    width: 100%;
    min-height: 3vw;
    height: fit-content;
    display: block;
    text-align: center;
    font-family: var(--font9);
    font-size: 1.2vw;
    background-color: var(--color4);
    color: var(--color3)
}

.notification_bar .notification {
    position: relative;
    left: 5%;
    width: 90%;
    height: fit-content;
    margin: 0;
    padding-top: 1vw;
    display: block;
}

.notification_bar .notification span {
    color: var(--color3);
    font-size: 1.3vw;
}

@media screen and (max-width: 62.438em){
    .notification_bar .notification span {
        font-size: 6vw;
    }
    .notification_bar .notification {
        font-size: 6vw;
    }
}