/* MAIN */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 100px;
}

.text-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  text-align: start;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.text-description {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-align: start;
  line-height: 1.5;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #000;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
  color: #000;
  border: 1px solid #000;
}
