@charset "utf-8";


* {
            color: #999999;
            background-color: #2E2E2E;
            font-size: 20px;
            font-weight: 400;
            box-sizing: border-box;
            font-family: 'Monteserat', Arial, sans-serif;
        } 

 
        header,
        section,
        footer {;
            text-align: center;
            font-size: 0.8em;
            border-radius: 7px;
            padding: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,.08);
        }
 
        header {
            width: 25%;
            margin: 25px 25px 25px 25px;
            display: inline-block;
        }
 
 
        section {
            float: left;
            width: calc(95% - 5px);
            margin: 0px 15px 25px 15px;
        }
 
        section header,
        section footer {
            width: 100%;
            border-radius: 7px;
            border: 1px solid #e5e5e5;
            box-shadow: none;
            margin: 25px 0px 0px 0px;
            padding: 20px;
            font-size: 0.8em;
        }
 
        section article  {
            width: 100%;
            border-radius: 7px;
            border: 1px solid #e5e5e5;
            box-shadow: none;
            margin: 25px 0px 0px 0px;
            padding: 15px;
        }

        ul {
          list-style-type: none;
          margin: 0;
          padding: 0;
          overflow: hidden;
        }

        li {
          float: left;
        }

        li a {
          display: block;
          color: white;
          text-align: center;
          padding: 14px 16px;
          text-decoration: none;
        }

        /* color on hover */
        li a:hover {
          background-color: #00cd92;
        }


        line_o {
            width: 96.5%;
            margin: 25px 25px 0px 25px;
            font-variant-position: 10px;
            clear: both;
        }

        footer {
            width: 96.5%;
            margin: 25px 25px 0px 25px;
            clear: both;
        }




.o-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;

}

.o-grid__item {
  container-type: inline-size;
  
}


.c-article {
  /* The default style */
}
@container (min-width: 400px) {
  .c-article {
    /* The styles that will make the article horizontal**
        ** instead of a card style.. */
       
  }
}


@container card (min-width: 320px) {
  .card {
    display: flex;
    align-items: center;
  }
}



h1         {color: #8B8B83; font-size:1.3em; letter-spacing: 0.2em; text-transform: uppercase;}
h2         {color: #8B8B83; font-size:1.2em; letter-spacing: 0.2em; text-transform: uppercase;}
h3         {color: #8B8B83; font-size:1.1em;}
h4         {color: #8B8B83; font-size:1.0em;}









