body{
    background-color: #1a4385;
    color: white; 
 }

 .sucess{
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     margin-top: 200px;
 }

 .textSucess{
     font-size: 22px;
     text-align: center;
 }

 .buttonSucess button{
     border: none;
     padding: 1em 3em;
     border-radius: 5px;
     background-color: white;
     color: #1a4385;
     cursor: pointer;
     transition: 1s all;
     font-weight: bold;
 }
 .buttonSucess button:hover{
     transform: scale(1.1);
 }

 @media screen and (max-width:280px){
        .imagemSucess img{
            width: 200px;
            height: 60px;
        }
 }