/*
GWD Simple CSS Reset, v2.2
by Eric Girouard, 2014-2024
Originally based on http://meyerweb.com/eric/tools/css/reset/ (version 2)

Use this CSS Reset if using Normalize's (or Modern CSS Reset's) "opinionated defaults" requires you to write too many overrides (such as: p {margin: 0; padding: 0;} ).

By default elements are made position: relative; to make positioning of absolutely positioned elements simpler.

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	position: relative; /* Added in v.2.1 */
	box-sizing: border-box; /* Added in v.2.2 */
}
/* HTML5 tags */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
	position: relative;  /* Added in v.2.1 */
	box-sizing: border-box;  /* Added in v.2.2 */
}

/* Make images responsive */
img { /* Added in v.2.2 */
  max-width: 100%;
  height: auto;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* "border-box" calculates the width and height of an HTML element including the padding and the border. Opposite of the traditional CSS Box Model of "content-box" */

#jac-logo {
    min-height:20%;
    padding: 20px;
}

#header-img {
    margin-top: 0;
}
header {
    background-image: url(../theme/img/bioblitz-header-larger-screen)
}

@font-face {
    font-family: 'Grow West';
    src: local('Grow West Regular'), local('GrowWest-Regular'),
        url('../fonts/titles/grow-west-font/GrowWest-Regular.woff2') format('woff2'),
        url('../fonts/titles/grow-west-font/GrowWest-Regular.woff') format('woff'),
        url('../fonts/titles/grow-west-font/GrowWestRegular-vm1qA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1 {font-family: 'Grow West';}
body {
    background-color: rgba(90, 146, 14, 1);
}
h2, p {
 margin:10px;
}

.when h2, .when p {
    text-align: center;
}
h2 {
    font-family: "Atma", system-ui;
    font-weight: 700;
    font-style: normal;
    font-size: xx-large;
  }

  ol {
    list-style-type: decimal; /*numbered list*/
    padding-left: 1.5rem;
  }
ul {
    list-style-type: disc; /* bullet points*/
    padding-left: 1.5rem;

  }
p, li {
    font-family: "Atma", system-ui;
    font-weight: 200;
    font-style: normal;
    font-size: medium;
    line-height: 150%;
}

h2,
p {
    margin: 10px;
}

img {
    margin-bottom: 2rem;
}

section {
    margin: 10px;
}
section.what {
    background-color: rgb(62, 101, 8);
    border: 1px solid rgb(148, 182, 100) ;
    padding: 11px;
}

#header-img-desktop {
    display: none;
}

@media (min-width: 640px) {
    #header-img-desktop {
        display: block;
    }
    #header-img-mobile {
        display: none;
    }
    

    .flex-container {
        display: flex;
        flex: 1;        
        /* put elements side-by-side */
        
    }
    .flex-container > div {
        flex-basis: 50%;
        column-gap: 1rem;
    }
    .how .flex-container > div {
        flex-basis: 33%;
    }

    .when .flex-container {
        flex-direction: row-reverse;
        
        /* places elements in reverse order: last element becomes first */
    }
}
    

@media screen and (min-width: 900px) {

    
    h2 {
        font-family: "Atma", system-ui;
        font-weight: 700;
        font-style: normal;
        font-size: 4rem;
        margin-bottom: 1.5rem;
      }
    
    p {
        font-family: "Atma", system-ui;
        font-weight: 200;
        font-style: normal;
        font-size: 2rem;
    }

    ul, ol, li, a{
        font-size: 2rem;
    }
    
    #inaturalist-logo {
        width: 20%;
    }

    #inaturalist-wordmark {
        margin-right: 5rem;
    }

 } /* always comment the closing media query tag
         so you don't delete it by accident */