* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
      background-color: 
#1a1f40;
color: white;
display: flex;
justify-content: center;
}
.containe{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}
.secao{
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
     border: 1px solid #fff;
     border-radius: 10px;
     padding: 10px;
       box-shadow: 0 8px 24px rgba(0, 60, 120, 0.35);
}
button{
    border-radius: 15px;
    padding: 10px;
    border: none;
    background-color: white;
    font-size: 16px;
    text-align: justify;
  hyphens: auto;
    cursor: pointer;
}