
* {
  box-sizing: border-box;
  }

body {
  font-family: 'Cal Sans', Arial;
  padding: 10px;
  /* background: rgb(0,71,171); */
  background: linear-gradient(60deg, rgba(0,71,171,1) 50%, rgba(28,169,201,1) 100%);
  }

h4 {
  margin-left: 1em;
  }

.childh4 {
  padding-top: 80px;
  }

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 1em;
  }

hr {
  background-color: #003087;
  height: 5px;
  width: 40%;
  margin-left: 10px;
  margin-right: 0px;
  }

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  }

/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  /*background: white;*/
  /* EggGradient Winter is Coming */
  background: rgb(176,224,230);
  background: linear-gradient(159deg, rgba(176,224,230,1) 0%, rgba(70,130,180,1) 100%);
  /* EggGradient March Madness *
  background: rgb(30,144,255);
  background: linear-gradient(159deg, rgba(30,144,255,1) 0%, rgba(153,186,221,1) 100%); */
  /*background-color: #bfdd50;
  background-image: linear-gradient(314deg, #bfdd50 0%, #BAB86C 74%);*/
  }

.header h1 {
  font-size: 50px;
  }

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
  text-decoration: none;
  }

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  }

/* Change color on hover */
.topnav a:hover {
  background-color: #cc7722;
  color: black;
  text-decoration: none;
  }

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
  }

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background: rgba(0,71,171,0.0); /* This is nice. The 4th value dictates the opacity of the color without affecting child elements */
  /*background: linear-gradient(159deg, rgba(0,71,171,1) 0%, rgba(28,169,201,1) 100%);*/
  padding-left: 20px;
  }

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
  }

/* Add a card effect for articles */
.card {
  background-color: #d7d7d7;
  padding: 20px;
  margin-top: 20px;
  }

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
  }

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
  font-size: 10px;
  }

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
    }
  }

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
    }
  }      



/* W3 Schools Tabbed Image Gallery code begins here.
https://www.w3schools.com/howto/howto_js_tab_img_gallery.asp */

    /* The grid: Four equal columns that floats next to each other */
    .column {
      float: left;
      width: 10%;
      padding: 10px;
      }

    /* Style the images inside the grid */
    .column img {
      opacity: 0.8; 
      cursor: pointer; 
     }

    .column img:hover {
      opacity: 1;
      }

    /* Clear floats after the columns */
    .rowimg:after {
      content: "";
      display: table;
      clear: both;
      }

    /* The expanding image container */
    .container {
      position: relative;
      display: none;
      }

    /* Expanding image text */
    #imgtext, #imgtext2, #imgtext3 {
      position: absolute;
      bottom: 15px;
      left: 15px;
      color: white;
      font-size: 20px;
      }

    /* Closable button inside the expanded image */
    .closebtn {
      position: absolute;
      top: 10px;
      right: 15px;
      color: white;
      font-size: 35px;
      cursor: pointer;
      }

/* This is me creating my own CSS thing for the VisCom section */
    .column_viscom01 {
      float: left;
      width: 100%;
      padding: 10px;
      }

    .column_viscom02 {
      float: left;
      width: 33%;
      padding: 10px;
      }

    .column_viscom03 {
      float: left;
      width: 50%;
      padding: 10px;
      }
