@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Poetsen+One&display=swap');
body
{
    width: 100%;
    height: auto !important; 
    min-height: 100vh;
    border: 0;
    margin: 0;
    display: flex;
    flex-flow: column nowrap;

    align-items: center;
    justify-content: center;
    align-content: center;
    justify-self: center;
    justify-items: center;

    background-image: url(/images/flowers\ wide.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    background-size: cover;
    background-color: #f1f1f1;

}



h1, h2, h3, #title
{
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  font-weight: 800;
  font-style: normal;
}
h1
{
  font-size: 2.5vw;
}
h2
{
  font-size: 1.8vw;
}
h3
{
  font-size: 1.2vw;
}

p, figcaption, table
{
    font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}

table, th, td 
{
  border: 1px solid black;
  border-style: solid;
  margin: auto;
   border-collapse: collapse;
}

td, th
{
  padding: 8px;
}

caption 
{
    caption-side: top;
    padding: 8px;
    margin: 8px;
}

ul, ol
{
  font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
  
}

li
{
  font-size: 1vw;
}
li > ol > li
{
  list-style-type: lower-alpha;
  
}

li > ol > li > ol > li
{
  list-style-type: lower-roman;
  
}

#tableOfContents
{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  
  justify-content: space-around;
  background-color: rgb(235, 235, 235);
}






#mainContainer
{
    width: 80vw;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 0;
    display: block;    
    background-color: #f4f4f4;
    padding: 64px;
    padding-top: 0;
    
}

#title
{
    font-size: 72px;
}
#subtitle
{
  font-size: 48px;
}

figure
{
  display: flex;
  width: 100%;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

figcaption
{
  font-size: 24px;
  width: 50%;
  padding: 16px;
  margin: 16px;
}

img
{
  border: 1px solid black;
  max-width: 100%;
}
    
footer
{
    text-align: center;
}

#graphics1
{
  display: flex;
  justify-content: space-between;
  align-content: center;
}



#graphics1 > figure
{
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  border: solid #b1b1b1;
  padding: 16px;
  
  
}

#graphics1 > figure > img
{
  width: 100%;
  border: none;





}

#graphics1 > figure > figcaption
{
  width: 100%;
  height: auto;
  border: none;
  text-align: center;
}

.participant-table
{
    width: 50%;

}

#homeButton
{
  font-family: "Atkinson Hyperlegible Next", sans-serif;  
  font-size: 24px;
  padding: 16px;
  background-color: #e0e0e0;
  text-align: center;
  width: 30%;
  margin: auto;
}


.tool-grid,
        .findings-grid {
            display: grid;
            gap: 1rem;
        }

        .tool-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .findings-grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .card {
            border: 1px solid #ccc;
            padding: 1rem;
            border-radius: 6px;
            background: #fafafa;
        }





@media screen and (max-width: 1200px) 
{
  
  
  body
  {
    background-image: url(/images/flowers\ close.png);
    background-color: #f1f1f1;
    background-size: contain;
    background-position: bottom;
  }
  


  #mainContainer
  {
    display: block;
    height: auto;
    padding: 0;
    
    background-color: #f4f4f4;
    width: 90%;
    padding: 12px;

  }
  h1
  {
    font-size: 2.5vh;
  }
  h2
  {
    font-size: 2.2vh;
  }
  h3
  {
    font-size: 2vh;
  }
  

  #tableOfContents
  {
    display: flex;
    flex-flow:column-reverse nowrap;
    align-items: center;
    justify-content: center;
    align-content: center;
  }
  #TOC
  {
    width: 100%;

  }

  li
  {
    font-size: 1.6vh;
  }

  img
  {
    width: 100%;
  }

  figure
  {
    margin: 0;
  }
  figcaption
  {
    width: 100%;
    font-size: 1.6vh;
    padding: 8px;
    margin: 8px;
  }
  #graphics1
  {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 16px;
  }

  .participant-table
  {
    width: 100%;
  }

  #homeButton
  {
    font-size: 1.6vh;
    width: 50%;
  }
}



