@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.investimento-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.investimento-img-wrapper img {
    margin-top: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.fade-in {
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.investimento-text-wrapper {
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.investimento-text-wrapper h1{
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 50px;
}

.investimento-text-wrapper h2{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.investimento-buttons-wrapper div{
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: block;
    width: max-content;
    margin: auto;
}

#spot-button {
    background-color: transparent;
    border: 1px solid white;
    font-weight: 700;
    letter-spacing: 0.1px;
}

#buy-button {
    background-color: #00add9;
    border: 0px none transparent;
    font-weight: 600;
    letter-spacing: 1.25px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 20px;
}

.pp_pic_holder {
    background-color: #00add9;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}