/* ===================== */
/* Selah and the Spades Page*/
/* ===================== */
/* Box Model Hack */
* {
  box-sizing: border-box;
}

:root {
  /* section gap controls the gap below each major section. Increase adds more space */
  --section-gap: 3.125rem;

  /* remove the gap between divs  */
  --slide-gap: -.25rem;

  /* p */
  --fs-2: 1rem;
  /* h1 */
  --fs-8: 2.027rem;
   /* h2 */
  --fs-7: 1.802rem;
  /* h3 */
  --fs-6: 1.602rem;
  /* h4 */
  --fs-5: 1.424rem;
  /* h5 */
  --fs-4: 1.266rem;
  /* h6 */
  --fs-3: 1rem;
  /* captioning */
  --fs-1: .9rem;
}
.nav-button{
  position: fixed;
  top: 2rem;
  left: 38px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: none;           /* harmless on <a> */
  display: inline-flex;   /* centers icon without relying on line-height quirks */
  align-items: center;
  justify-content: center;
  text-decoration: none;  /* remove anchor underline */
  cursor: pointer;
  z-index: 1000;
  background-color: rgba(255 255 255 / .35); /* Selah can override color only */
}

.nav-button:hover{
  background-color: rgba(255 255 255/ .80);
}

.material-symbols-outlined {
  padding: 12px;
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  /* Your defaults */
  font-size: 32px;
 color: rgba(32 129 109 / .80);
  
  font-variation-settings: 
    'FILL' 0,   /* 0 outline, 1 filled */
    'wght' 700, /* 100–700 */
    'GRAD' 0,
    'opsz' 40;
}

.material-symbols-outlined:hover{
  color: rgba(65 129 110 / .95);
}

body {
  font-family: Helvetica, sans-serif;
}

img {
  width: 100%;
  height: auto;
}

.slide{
  margin-top: var(--slide-gap);
}

.intro-text {
  height: auto;
}

.intro-text p{
  padding: 3rem 2rem 2rem 2rem;
  max-width: 1000px;
  margin: auto;
  font-size: var(--fs-4);
  font-weight: 300;
  line-height: 1.5;
}
.selah1 {
  width: 100%;
}

@media (max-width: 850px){
  .nav-button {
    left: 20px;
  }
}