html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
    background-color: #F7F7EF;
}
.wrapper {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper .pronto{
    display: flex;
    flex-direction: column;
    margin-top: -100px;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 500px;
}
.wrapper .pronto figure{
    text-align: center;
}
.wrapper .pronto img{
    width: 100%;
    height: auto;
}
.wrapper .pronto span{
    letter-spacing: 0.02em;
    color: #026533;
    font-size: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4em;
    padding: 30px 20px;
    margin-top: 15px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.039);
}
.wrapper .pronto span a{
    color: #026533;
    font-weight: bold;
    display: block;
    text-decoration: underline;
}
#footer {
    flex-shrink: 0;
}
.reversed-email {
    direction: rtl;
    unicode-bidi: bidi-override;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

@media only screen and (min-width: 0px) and (max-width: 480px){
    .wrapper .pronto img{
        width: 100%;
        max-width: 100%;
    }
    .wrapper .pronto span{
        font-size: 12px;
    }
}
@media only screen and (min-width: 481px) and (max-width: 576px){
    
}