:root {
    --main-color:#0088FF;
    --pearl: #FFFDF7;
    --offpearl: white;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


.desktop-layout {
    overflow-y: hidden;
}

h1 {
    font-family: Garamond, "Times New Roman", serif;
    line-height: 1.25;
    color:white;
    padding-bottom: 2px;
    font-weight: normal;
    font-size: 40px;
    z-index: 200;
    width: 700px;
    text-align: center;
}

h2 {
    font-family: Garamond, "Times New Roman", serif;
    line-height: 0.1;
    color:black;
    padding-bottom: 0px;
    font-weight: normal;
    font-size: 30px;
    z-index: 200;
    text-align: center;
}

h3 {
    font-family: Garamond, "Times New Roman", serif;
    line-height: 1.2;
    color:black;
    padding-top: 0px;
    padding-bottom: 0px;
    font-weight: normal;
    font-size: 20px;
    z-index: 200;
    text-align: center;
}

h4 {
    width: 400px;
}

h5 {
    font-family: Garamond, "Times New Roman", serif;
    line-height: 1.2;
    color:white;
    padding-bottom: 2px;
    font-weight: normal;
    font-size: clamp(25px, 0.45vw, 32px);
    z-index: 200;
    text-align: center;
    margin-left: 10px;
}

h6 {
    font-family: Garamond, "Times New Roman", serif;
    line-height: 0;
    color:black;
    padding-top: 0px;
    padding-bottom: 2px;
    margin-bottom: 26px;
    margin-top: 15px;
    font-weight: normal;
    font-size: 24px;
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background-color: var(--main-color);
    padding-top: 15px;
    padding-bottom: 20px;

    display: flex;
    justify-content: center;   /* centers the group in the header */
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 800px);
    background-color: var(--main-color);

    display: flex;
    justify-content: center;   /* centers the group in the header */
}

.header-inner {
    display: flex;
    align-items: center;       /* vertical alignment of logo + text */
    gap: 20px;                 /* space between logo and title */
}

.logo {
  padding-top: 2px;
    height: 60px; /* adjust as needed */
  width: auto;
}

.mobile-logo {
  padding-top: 2px;
    height: 50px; /* adjust as needed */
  width: auto;
}

.weekly {
    padding-top: 4px;
    width: 300px; /* adjust as needed */
    height: auto;
    align-content: center;
    display: block;
    margin: 0 auto;
}

main {
    margin: 0 auto;
    line-height: 1.6;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.scroll {
  display: flex;          /* space between the sections */
  align-items: flex-start;
  width: 2000px;
}

.divide {
    background-color: var(--main-color)!important;
    width: 200px!important;
}

.scroll section {
    flex: 1;
    padding: 190px 40px 0;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    height: calc(100vh - 15px);
    background-color: var(--pearl); 
    box-sizing: border-box;               /* equal width columns */
    width: 600px;
}

.mobile-layout {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    padding: 65px 14px 0;
    line-height: 1.6;
}

.stack {
    padding-top:40px;
}

.stack section {
    padding-bottom: 35px;
}

.centered {
  text-align: center!important;
}

.mobile-header {
    height: 50px;
}