
:root
    {
  --dot-color: transparent;
  --gap: 20px;
    }

body
    {
    width: 800px;
    background: #ffccff;
    font-size: 20px;
    font-family: "Verdana", "Arial", "Helvetica", "sans-serif";
    margin: 0px;
    padding: 0px;
    color: #9933ff;
    text-align: center;
    }

page-container
    {
    position: relative;
    min-height: 100%;
    margin: 20px auto 0px auto;
    }

main-content
    {
    padding-bottom: 80px;    /* Footer height */
    }

.table_header
    {
        background: #ffccff;
        padding: 0px 12px;
        margin: 0px 4px 4px 4px;
        width: 800px;
        color: #9933ff;
        font-size: 35px;
        font-weight: bold;
    }
.header_images
    {
    max-width: 800px;
    height: 40px;
    }
    
h1, h2, h3, h4, h5, h6
    {
    font-size: 30px;
    text-transform: none;
    font-weight: bold;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align:right;
    }
    .h1
        {
        font-size: 25px;
        }
    .h2
        {
        font-size: 12px;
        font-weight:600;
        }
    .h3
        {
        font-size: 6px;
        font-weight:600;
        }
    .h4
        {
        font-size: 18px;
        font-weight:600;
        margin-top: 5px;
        margin-bottom: 5px;
        text-align: justify;
        }
    .h5
        {
        font-size: 22px;
        font-weight:500;
        margin-top: 5px;
        margin-bottom: 5px;
        text-align: left;
        }
    .h6
        {
        font-size: 18px;
        font-weight:500;
        margin-top: 5px;
        margin-bottom: 5px;
        text-align:center;
        }
.floating-menu
    {
    background: hsla(80, 90%, 40%, 0.7);
    border-style:solid;
    border-width:thin;
    padding: 0em 0.5em 0.5em 0em;
    box-shadow: 0 1px 3px black;
    border-radius: 0.5em 1.5em 1.5em 0.5em;
    border-left: none;
    width: 100px;
    z-index: 100;
    position: fixed;
        top: 0px;
        left: 0px;
    }
.floating-menu a
    {
    font-size: 20px;
    text-align:center;
    min-height: 28px;
    display: block;
    margin: 0 0.5em;
    color: white;
    }
    
footer
    {
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    line-height: normal;
    font-size: 11px;
    bottom: 0;
    width: 100%;
    }
    
#grid {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  display: grid;
  grid-gap: 30px;
  grid-template-columns:repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc(calc(100% - calc(var(--gap) * 2)) / 1.5);
}

#grid::before {
  content: '';
}

#grid::after {
  content: '';
  width: 30px;
}

.IconBox {
  width: 350px;
  height: 350px;
}

.IconBox:nth-child(odd) {
}

.IconBox:nth-child(even) {
}

.IconBox_img {
  width: 95%;
  height: 95%;
}

.ImgBox {
  width: 800px;
}

.ImgBox_img {
  object-fit: cover;
  object-position: center;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-container div {
  width: 450px;
  margin: 10px;
  padding: 10px;
  text-align: center;
}

.flex-container div_j {
  width: 350px;
  margin: 10px;
  padding: 10px;
  text-align: justify;
  vertical-align: middle;
}

.flex-container div_q {
  width: 10px;
  margin: 10px;
  padding: 10px;
  text-align: center;
}

.flex-container div_jq {
  width: 750px;
  margin: 10px;
  padding: 10px;
  text-align: justify;
  vertical-align: middle;
}

.flex-container img {
  width: 400px;
  height: auto;
}