
/*-------------------------------------*/
/************ root/body ****************/

root { 
    display: block;
}

body{
    background-image: url(mainpic2.jpg);
    background-repeat: repeat;
    background-size: 100%;
}

/*-------------------------------------*/
/************ banner *******************/

#banner{
    background-color: rgb(150,200,150);
    text-align: center; 
    font-family: "Courier New", Courier;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

#banner #bannertitle{
    font-weight: bold;
    font-size: 300%;
}

#banner #bannersubtitle{
    font-size: 120%;
}

#banner #bannerimage{
      
}

#banner img{
    width: 100%;
    max-width: 1100px;   
}

#banner #pagelinks{
    padding-bottom: 6px;
    padding-top: 3px;
}

#banner #pagelinks a{
    color: inherit; 
}

/*-------------------------------------*/
/************ main text ****************/

#maintext{
    margin: 5%;
    font-size: 100%;
    font-family: Arial, serif;
    color: rgb(50,50,50);
    padding-bottom: 30px;
    text-align: justify;
}

#contact{
    font-family: "Times", san-serif;
    font-size:150%;
    font-weight:bold;
    color:rgb(100,150,100);
    
}

/*-------------------------------------*/
/************ youtube ******************/

.youtube{
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*-------------------------------------*/
/************ cards *******************/

#loadedlist{
    display: none;
}

@media (min-width: 400px) {
  .card-table {
    column-count: 1;
  }
}

@media (min-width: 800px) {
  .card-table {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .card-table {
     column-count: 3;
  }
}

.card-table{    
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.card{
    break-inside: avoid;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: black;
    box-shadow: 10px 10px 5px grey;
    padding: 10px;
    overflow: hidden;
    display: block;
    font-size: 80%;
    margin-bottom: 20px;
}

.card-image img{
    max-width: 100%;
    width: 100%;
    height: auto;
}

.card-title{
    margin-bottom: 0;
    margin-top: 2%;
    text-align: left;
}

.card-subtitle{
    margin-bottom: 1%;
    margin-top: 0;
    color:#007427;
    text-align: left;
}

.card-summary{
    font-style:italic;
}

.card-footnotes{
    color:#007427;
}










