@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
  font-family: 'Montserrat', sans-serif; /* Fonte Montserrat */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
  height: 100%;
  margin: 0;
}

.btn-default {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(234, 175, 49);
  border-radius: 8px;
  padding: 15px 25px;
  font-weight: 600;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.311);
  cursor: pointer;
}

.btn-default:hover { /* Efeito hover ou passou o mouse ele movimenta um pouco*/
  transform: translateY(-1.0px) scale(1.00); /* Sobe ao passar o mouse */
  box-shadow: 0px 4px 18px 4px rgba(255, 157, 0, 0.252); 
  transition: all 0.5s ease; /* Suaviza a transição */
}
