
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

html, body {
  height: 100%;
  margin: 0;   /* remove default margin */
  padding: 0;  /* remove default padding */


    }

    /* Header */
    header {
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      background-color: #333;
      color: #fff;
      position: relative;
      z-index: 1000;
    }

    header .logo {
      font-size: 1.2rem;
      font-weight: bold;
    }

    header .hamburger {
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Slide-out nav */
    nav {
      position: fixed;
      top: 0;
      right: -250px; /* hidden off-screen */
      width: 250px;
      height: 100%;
      background-color: #444;
      color: #fff;
      transition: right 0.3s ease;
      padding-top: 75px; /* push below header */
    }

    nav.active {
      right: 0;
    }

    nav ul {
      list-style: none;
    }

    nav ul li {
      padding: 15px 20px;
      border-bottom: 1px solid #555;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
    }

    /* Body */
    main {
      background-color: #f4f4f4;
      padding: 20px;
	  height: 100%; /* 100% of the viewport height */

    }

    /* Footer */
    .footer {
      height: 75px;
      background-color: #222;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
	
.responsive {
  width: 100%;
  height: auto;
}	

h1 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

p
		{
				border: none;
				color: #0D0D0D;
				font-family: 'AlegreyaSans-Regular', 'OpenSans-Regular';
				font-size: 15pt;
				font-weight: normal;
				font-style: normal;
				letter-spacing: 2px;
				padding-top: 0px;
				padding-bottom: 0px;
				padding-left: 0px;
				padding-right: 0px;
				text-decoration: none;
		}
  