@charset "utf-8";
/* CSS Document */

/* ====== MAIN CONTENT STYLES ====== */
.main-content {
  background: white;
  padding: 80px 20px;
  position: relative;
  z-index: 100;
  margin-top:5vh;
}

@media (min-width: 1024px) {
	.main-content{
		padding-top:20px;
		margin-top: 2vh;
		position:relative;
		z-index:5;
	}
}

.main-content h1 {
  font-size: 3em;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.main-content h2 {
  font-size: 2em;
  color: var(--navy);
  margin-bottom: 15px;
}

.main-content h3 {
  font-size: 1.5em;
  color: var(--navy);
  margin-bottom: 10px;
}

.main-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

body{ font-family: Arial, sans-serif;
      margin: 5rem;
      line-height: 1.6;
    }
    h1 {
      margin-bottom: 1rem;
    }
    ul {
      list-style-type: none;
      padding-left: 1rem;
    }
    li {
      margin: 0.3rem 0;
    }
    a {
      text-decoration: none;
      color: #0066cc;
    }
    a:hover {
      text-decoration: underline;
    }
    .section {
      margin-bottom: 2rem;
    }