/* styles.css */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-color: #f7f7f7;
  }
  
  h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 16px;
    margin: 10px 0;
  }
  
  img {
    max-width: 15%;
    height: auto;
    margin-top: 20px;
  }
  