* {
    /* outline: 2px solid red; */
}

nav {
    position: fixed;
    /* width: 100%; */
    z-index: 10000;
    top: 10px;
    right: 18px;
}

nav img {
    /* display: flex;
    margin: auto; */
    width: 3.5em;
    margin-left: 2em;
}

.fundo {
    animation: scales 3s alternate infinite;
    transform-origin: center;
}

.pao-baixo {
    animation: rotatepao 14s cubic-bezier(.1, .49, .41, .97) infinite;
    transform-origin: center;
}

.pao-cima {
    animation: rotatepao 7s 1s cubic-bezier(.1, .49, .41, .97) infinite;
    transform-origin: center;
}

.olhos {
    animation: olhos 2s alternate infinite;
    transform-origin: center;
}

.left-sparks {
    animation: left-sparks 4s alternate infinite;
    transform-origin: 150px 156px;
}

.right-sparks {
    animation: left-sparks 4s alternate infinite;
    transform-origin: 310px 150px;
}

.olhos {
    animation: olhos 2s alternate infinite;
    transform-origin: center;
}

@keyframes scales {
    from {
        transform: scale(0.98)
    }

    to {
        transform: scale(1)
    }
}

@keyframes rotatepao {
    0% {
        transform: rotate(0deg)
    }

    50%, 60% {
        transform: rotate(-20deg)
    }

    100% {
        transform: rotate(0deg)
    }

}

@keyframes olhos {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(30deg);
    }
}

@keyframes left-sparks {
    0% {
        opacity: 0;
    }

}

.container {
    padding-top: 3rem;
}

.holder {
    position: relative;
    height: 90vh;
}

.main {

    /* min-height: 600px; */
    height: 100%;
    margin: 0px auto;
    width: auto;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* position: relative; */
}


.path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: dash 4s alternate infinite;
}

@keyframes dash {
    0%, 30% {
        fill: 4B4B62;
        stroke-dashoffset: 0;
    }

    80%, 100% {
        fill: transparent;
        stroke-dashoffset: -200;
    }
}

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.details p {
    color: black;
    font-size: 200%;
    font-weight: 900;
    font-family: cursive;
}

/* .details button {
    height: 2rem;
    border-radius: 2rem;
    color: whitesmoke;
    background: #FF9B24;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 36px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    cursor: pointer;
    border: none;
    font-weight: 800;
}

.details button:hover{
    
} */

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.ilu1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15rem;
    height: 15rem;
}


.ilu2 {
    position: absolute;
    top: 10px;
    left: 0;
    width: 15rem;
    height: 15rem;
}

.svg_container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.details p {
    color: black;
    font-size: 200%;
    font-weight: 900;
    font-family: cursive;
} */


@media screen and (max-width: 735px) {
    .ilu1 {
        bottom: -180px;
        right: 0;

    }

    .ilu2 {
        top: -57px;
        left: -57px;
    }

    .main {
        margin: 40px auto;
    }

}

@media screen and (max-width: 450px) {
    .details p {
        font-size: 130%;
        text-align: center;
    }

    .glow-on-hover {
        width: 180px;
        height: 40px;
    }

    .ilu2 {
        top: -51px;
        left: -57px;
    }

    /* .main {
        margin: 115px auto;
    } */

}



/* footer */
