body{
    background: #efefef;
    background-image: url(https://pierrebarbosa.com/wp-content/uploads/2020/07/BannerSite01.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-fluid{
    background-color: transparent;
    background-image: linear-gradient(180deg, #0000008A 0%, #2F2F2F 91%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    padding: 0 0 5% 0;
}

.olfato .container-fluid{
    padding: 8% 0;
}

.box-principal {
    background: #FFF;
    padding: 50px;
    margin: 20px 0 50px 45%;
    border-radius: 0;
    text-align: center;
}

.box-centro{
    margin: 50px auto;
}

.box-formulario{
    margin: 0 auto;
    text-align: center;
}

.logo-pierre{
    max-height: 42px;
}

h1{
    color: #DC9D04;
    text-transform: uppercase;
    font-size: 42px;
    font-family: 'Bebas Neue', cursive;
}

h2{
    font-size: 32px;
    color: #DC9D04;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
}

p, body, .btn, input, li{
    font-family: 'Roboto', sans-serif;
}

p, li{
    font-size: 18px;
}

.resultado p{
    font-weight: 300 ;
}

.analise-itens{
    text-align: left;
}

.btn-primary {
    color: #fff;
    background-color: #DC9D04;
    border-color: #DC9D04;
    box-shadow: 0 2px 6px 0 rgb(224 167 55);
    -webkit-box-shadow: 0 2px 6px 0 rgb(224 167 55);
}

.btn-primary:hover {
    color: #fff;
    background-color: #DC9D04;
    border-color: #DC9D04;
    opacity: 0.9;
}

ul{
    padding: 0 20px;
}

li{
    font-weight: 300;
    list-style-position: inside;
}

.titulo-resultado{
    font-size: 32px;
    font-family: 'Bebas Neue', cursive;
}

.icone-check{
    width: 64px;
}

.icone-alert{
    width: 120px;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 480px){
    .box-principal{
        padding: 25px;
        margin: 25px;
    }

    .btn-lg{
        padding: .5rem 0.9rem;
    }

    .titulo-resultado, .analise-itens p{
        text-align: center;
    }
}