body {
    background-color: #38373a!important;
    font-family: 'Montserrat', sans-serif!important;
    color: #f7f5eb!important;
    /* Não alterar */
    font-size: 1.1rem!important;
    line-height: 1.5rem!important;
    text-align: center!important;
}

.container-fluid {
    max-width: 540px;
}


/* PHOTO */

.photo {
    margin-top: 40px;
    margin-bottom: 40px;
}

.photo img {
    border-radius: 50%;
    max-width: 250px;
    animation: zoom 15s;
}

@keyframes zoom {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


/* TITLE */

.title h1 {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 3rem;
    animation: zoom 15s;
    ;
}

.title h2 {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.5rem;
    animation: zoom 15s;
    ;
}


/* LINKS*/

.links {
    margin-bottom: 40px;
}


/* BOTÃO */

.botao {
    color: #020202;
    background-color: #eab925;
    /* Não alterar */
    max-width: 100%;
    min-height: 2.2rem;
    vertical-align: middle;
    margin-top: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    border-radius: 50px;
    padding-top: 0.3rem;
    transition: all 1s;
}

.botao:hover {
    color: #f7f5eb;
    background-color: #7a4f0b;
}


/* SOCIAL */

.social {
    margin-bottom: 40px;
}

.social a {
    text-decoration: none;
    color: #eab925;
    transition: all 1s;
}

.social a:hover {
    text-decoration: none;
    color: #7a4f0b;
}

.social ul {
    padding-left: 0px;
}

.social ul li {
    display: inline;
    list-style-type: none;
    margin: 0;
    padding: 5px;
}


/* FOOTER */

footer {
    font-size: 0.5rem;
    line-height: 1rem;
}

footer a {
    text-decoration: none;
    color: #38373a;
    transition: all 1s;
}

footer a:hover {
    color: #55544c;
}