@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

.demopage h1 {
    font-family: Arial, Verdana, sans-serif;
    color: black;
}
          
.demopage h2 { 
    font-family: 'Roboto', Trebuchet MS, Arial, sans-serif !important;
    color: hotpink;
}

.demopage h2 a { 
    font-family: 'Roboto', Trebuchet MS, Arial, sans-serif !important;
    font-weight: inherit;
    color: #FFFFFF; /* White */
}
          
.demopage h3 {
    font-family: 'Roboto', Trebuchet MS, Arial, sans-serif;
    font-size: 22px;
    color: green;
    text-align: center;
    margin-bottom: 20px;
}

.demopage h3 a { 
    font-family: 'Roboto', Trebuchet MS, Arial, sans-serif !important;
    font-weight: inherit;
    color: #FFFFFF; /* White */
}
          
.demopage ul {
    column-span: 2;
    column-count: 2;
    -webkit-column-count: 2;
    -moz-column-count: 2;
}
          
.demopage li {
    font-family: 'Roboto', Trebuchet MS, Arial, sans-serif;
    display: inline-grid;
}

.demo-btn-container {
   display: grid;
   grid-template-columns: auto auto auto;
   padding: 10px;
}
          
.demo-btn {
    width: 100%;
    height: 60px;
    background-color: #011689; /* SBM Blue */
    color: #FFFFFF; /* White */
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    display: inline-block;
    margin: -5px;
    padding: 10px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    vertical-align: middle;
    opacity: 1;
}

.demo-btn:hover,
.demo-btn:focus {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: .5;
}
          
.demopage table {
    font-family: Arial, Verdana, sans-serif;
    /* border: 1px solid; */
    border-spacing: 0px;
    border-collapse: collapse;
    width: 70%;
    margin: 0px auto 50px;
}
          
.demopage thead {
    /* border: 1px solid; */
    color: darkred;
}
          
.demopage thead tr th /*{
    border: 0px;
}*/
/*Targets just the first empty cell in a table row*/
          
.demopage tr {
    border: 1px solid;
    border-spacing: 0px;
    border-collapse: collapse;
}
          
.demopage tr:nth-child(even) {
    background-color: rgb(224, 224, 224);
}
/* Targets every 'even' table row to create a zebra-striped effect */
          
.demopage th {
    text-align: center;
    font-size: 16px;
    padding: 10px;
    margin: 0px;
    border: 1px solid;
    border-spacing: 0px;
    border-collapse: collapse;
    color: goldenrod;     
}
          
.demopage th:first-child {
    text-align: left;
    color: blue;
    font-size: 16px;
}
          
.demopage td {
    text-align: center;
    font-size: 16px;
    border: 1px solid;
    border-spacing: 0px;
    border-collapse: collapse;
    color: red;
}     
