.window-notice {
    background: rgba(33, 41, 52, .85);
    bottom: 0;
    display: flex;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    transition: background .6s;
}

.window-notice .content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(33, 41, 52, .5);
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 600px;
    min-width: 320px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem;
    font-size: 1.3rem;
}

.content-text a{
    font-weight: bolder;
}

.content-buttons {
    text-align: center;
    margin-top: 1rem;
}

.content-buttons a {
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem;
    background-color: #034574;
    width: 30%;
    border-radius: 20px;
    color: #FFF;
    text-transform: uppercase;
}

.content-buttons a:hover {
    background-color: #006AB8;
}
/*--
.content-buttons a {

    color: #034574;
    text-decoration: none;
}

.content-buttons a:hover {
    color: #006AB8;
    text-decoration: underline;
    text-align: justify;
}--/