* {
  margin: 0;
  padding: 0;
}

/* this is the 'perfect full page background image' as per https://css-tricks.com/perfect-full-page-background-image/ */
html { 
  background: url(images/subtle_tantra_cover_notext_blur.webp) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

p {
  margin-left: 2%;
  margin-top: 2%;
  margin-right: 2%;
  text-align: left;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-variant-ligatures: normal;
  font-size: 1.25rem;
  letter-spacing: normal;
  color: #E3D0FE;
}
/* this makes a two-column layout where the first column is sticky and the second column scrolls */
.columns {
  display: flex;
  height: 100vh;
  overflow-x: auto;
}

.column1 {
  flex: 1;
  position: sticky;
}


.column2 {
  flex: 1;
  overflow: auto;
}
/*this makes it stop the two-column layout on displays less than 800px and do a stacked layout */
@media (max-width: 800px) {
p {
  margin-top: 5%; /* otherwise it's too cramped on mobile */
  }
.columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column1 {
  flex: 50%;
}


.column2 {
  flex: 50%;
}
}

a {
  font-weight: bold;
  color: #E3D0FE; 
  text-decoration: underline;
}

a:visited {
  font-weight: bold;
  color: #E3D0FE;
  text-decoration: underline;
}

img {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
}

.social img {
	margin-right: 0%;
}

strong {
  font-weight: 600;
  }

.email {
  font-style: italic;
  font-weight: 500;
}

h1 { /* arktet */
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 2rem;
  color: #E3D0FE;
  margin-left: 5%;
  margin-top: 5%;
}


h2 { /* member names small in white */
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: normal;
  color: #FFFFFF;
  margin-left: 5%;
  margin-top: 2%;
}

h3 { /* subtle tantra title */
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: hsl(264 79% 80%);
  margin-left: 5%;
  margin-top: 2%;
  /* text glow https://css-tricks.com/how-to-create-neon-text-with-css/ 
  text-shadow: 0 0 7px #B185EB; */
  filter: blur(3px);
}

.heading_noblur { /* subtle tantra title */
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: hsl(264 79% 80%);
  margin-left: 2%;
  margin-top: 3%;
}
.heading_noblur :link {
  text-decoration: none;
  }
.heading_blur { /* subtle tantra title */
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: hsl(264 79% 80%);
  margin-left: 2%;
  margin-top: 3%;
  /* text glow https://css-tricks.com/how-to-create-neon-text-with-css/ */
  /*text-shadow: 0 0 7px #B185EB;*/ 
  filter: blur(2px);
}
.heading_blur :link {
	text-decoration: none;
}

.footer {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: normal;
  color: #FFFFFF;
  margin-left: 0%;
  margin-top: 2%;
  margin-bottom: 2%;

}
