#black-friday-notice {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
}

#black-friday-notice:hover {
    color: #9fa61e;
}

@media (max-width: 500px) {
    #black-friday-notice {
        box-sizing: border-box;
        display: block;
        width: calc(100% - 40px);
        line-height: 26px;
    }
}
