* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

/*------------------ANIMAÇÕES------------------*/
@keyframes pulse
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(1.1);
    }
    100%
    {
        transform: scale(1);
    }
}

.body
{
    background-color: #ff6e00;
}
  .container
{
    background-color: white;
}

.logo
{
    /* min-width: 100vw; */
    /* max-width: 100vw; */
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 25em;
}

.imgend
{
    width: 100%;
    object-fit: cover;
    height: auto;
}

.cor-pri
{
    font-size: 3em;
    font-family: arial black;
    color: grey;
}
.cor-sec
{
    font-size: 3em;
    font-family: arial black;
    color: #fd7e14;
}

.text-bt
{
    font-size: xx-large;
}

.btn
{
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease-in-out;
    width:  100%;
    height: 8rem;
}

