
html{
  font-size: 16px;
}



 @font-face {
    font-family: 'OpenSans-Regular';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/OpenSans-Regular.ttf') format('truetype');
  }

@font-face{
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/Segoe UI.ttf') format('truetype');
  }

  :root {
    --font-family-h1-heading: 'OpenSans-Regular', sans-serif;
    --font-family-body: 'OpenSans-Regular', sans-serif;
    --font-family-paragraph: 'Segoe UI', sans-serif;
  }

 

  p{
    font-family: var(--font-family-paragraph);
  }
  h1, h2, h3, h4 {
    color: #333;
}

  .wrap{
	
    padding: 30px;
    margin: 50px;
    min-height: 100vh;
    padding-top: 8em;

  }

  .wrap h1{
    font-family: var(--font-family-h1-heading);
   font-size: 20px;
      /* color: #070707; */
      margin-bottom: 2rem;
  }
 .wrap h2{
    padding: 10px 0 5px;
    font-family: var(--font-family-h1-heading);
    font-size: 20px;
    font-weight: 600;
   

  }
  
.wrap h4{
  margin-top: 30px;
  margin-bottom: 8px;
  color: #0b0b0bea;
  font-weight: bold;
}

.wrap p{
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}




  @media (max-width:768px) {
   .wrap{
  padding: 10px;
  margin: 0;
  margin-top: 141px;
 }
}