<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: white;
  
}

.column {
  background-color: white;
  padding: 20px;
  width: 50%; /* alterado */
  text-align: center;
  box-sizing: border-box;
  min-height: 300px;

}

.column p {
  text-align: center;
  font-size: 18px;
  color: #999999;
}

.column a {
  display: inline-block;
  vertical-align: middle;
}

.button {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-decoration: none;
  color: white;
  background-color: orange;
  border-radius: 50px;
  width: 250px;
  height: 30;
  padding: 2%;
}

.button:hover {
  background-color: #e8da68;
}

.button-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 15px;
  margin-top:10px
}

.button-text {
  margin-top: 5px;
  color: white;
  font-size: 28px;
}


</pre></body></html>