html {
    scroll-behavior: smooth;
}

h5 a:link,
h5 a:visited,
h5 a:active {
    color: #333341;
}

footer a:link,
footer a:visited,
footer a:active {
    color: #fffefebf;
}

footer div h6 {
    color: #fffefebf;
}

/* did not have effect */
h5 a:hover {
    color: rgb(55, 75, 58);
}

.mylink:link,
.mylink:visited,
.mylink a:active {
    color: #516351;
}

.myfont {
    font-family: 'Cormorant Garamond', serif;
    font-size: larger;
    text-align: center;
   
}
.myfont div {
    margin-top: 5px;
    border-bottom: 1px solid #CCC;
}
.myfont div span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: bolder;
}

#bbglow:hover {
    background-color: pink;
}

#descontoespecial3 {
    background-color: none;
    position: relative;
    animation-name: example3;
    animation-duration: 0.75s;
    animation-timing-function: linear;
    animation-delay: 0.5s;
    animation-iteration-count: 4;
    animation-direction: alternate;
}

#lastspot {
    animation-name: example4;
    animation-duration: 0.75s;
    animation-timing-function: linear;
    animation-delay: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@media only screen and (max-width: 767px) {
    #testando {
        background-position: right 150px top 80px;
        /* background-position-x: -150px; */
    }
}
@media only screen and (min-width: 768px) {
    #testando {
        background-position: left 0px top 80px;
    }
}

@keyframes example3 {
    0% {
        background-color: none;
        left: 85%;
    }
    25% {
        background-color: none;
        left: 86%;
    }
    50% {
        background-color: none;
        left: 85%;
    }
    75% {
        background-color: none;
        left: 86%;
    }
    100% {
        background-color: none;
        left: 85%;
    }
}

@keyframes example4 {
    0% {
        background-color: #f00;
    }
    100% {
        background-color: #fff;
    }
}

.animalink:hover {
    background-color: pink;
}

.animalink a:link,
.animalink a:visited,
.animalink a:active {
    color: #b95356;
}

/* overwrite bs4 class 
.nav-link {
    color: #721c2499;
}
*/
