#fixed-alert {
    position: fixed;
    top: 60vh;
    right: 0;
    background-color: #196b69;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem 2rem;
    border-radius: 0.4rem;
    z-index: 1049;
    /* display: none; */
}

#fixed-alert h3 {
    font-size: 1.4rem;
}

#fixed-alert a {
    display: block;
    color: #196b69;
    background: #ffff00;
    margin-top: 2rem;
    padding: 0.7rem 0;
    width: 95%;
    text-align: center;
    border-radius: 0.4rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 1s;
}

#fixed-alert a:hover {
    border: 1px solid #ffff00;
    background: transparent;
    color: #ffff00;
}
