
/* Import Font*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');


  body {
    font-family: 'Poppins', Montserrat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin: 0;
    background: linear-gradient(to bottom, #f0f2f5, #ffffff);
       }
        

  h1 {
    margin-bottom: 40px;
    color: #333333;
     }

.btn {
  padding: 15px 30px;
  margin: 10px;
  font-size: 18px;
  font-weight: none;
  font-family: 'Poppins', Montserrat;
  color: white;
  background-color: #006847;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-align: center;
       }

.btn:hover {
  background-color: #333333;
           }

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
      }

