/* styles4.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url(./img/maiorchamado.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
}

header {
    background-color: #00698f;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
}
p {
    margin-top: 1px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 3px;
    color: rgb(15, 6, 34)}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

footer {
    background-color: #00698f;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    clear: both;
}


button {
    width: 350px;
    height: 30px;
    background: mediumaquamarine;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    text-align:center;
    margin-left: 470px;
    margin-top: 15px;
    color: #9800ce;
    box-shadow: 0 0 0 7px lightcoral,
        0 0 0 15px blue,
        0 0 0 20px #fff,
        0 0 10px #fff,
        0 0 100px #fff;
    font-weight: bold;
    font-size: 1.5em;}
.caixa {
    position: relative;
    width: 300px;
    height: 300px;
    color: #fff;
    background-image: url(./img/biblia.jpg);
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 108px;
    font: bold 2em 'century gothic';
    text-transform: uppercase;
    
}

.name {

    height: 20px;
    color: rgb(66, 121, 223);
    background: white;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    font: bold 2em 'gothic';
    border-radius: 100vh;


}


.caixa::before,
.caixa::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: linear-gradient(45deg, red, #fffF00, #00FF00, #0099FF, #001aff, #fffF00, #00FF00, #0099FF, #001aff, #a200ff);
    background-size: 300%;
    background-position: 100%;
    border-radius: 108px;
    animation: AnimarBorda 8s linear infinite;
}

.name::before,
.name::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: linear-gradient(45deg, red, #fffF00, #00FF00, #0099FF, #001aff, #fffF00, #00FF00, #0099FF, #001aff, #a200ff);
    background-size: 300%;
    background-position: 100%;
    border-radius: 208px;
    animation: AnimarBordaname 8s linear infinite;
}

@keyframes AnimarBorda {

    0% {
        background-position: 0;
    }

    100% {
        background-position: 300%;

    }
}

.caixa::after {

    filter: blur(50px);

}

@keyframes AnimarBordaname {

    0% {
        background-position: 0;
    }

    100% {
        background-position: 300%;

    }
}

.name::after {

    filter: blur(50px);

    font-family: ' Century gothic ';
    line-height: 20px;

}