@font-face{ 
    font-family: 'theGridFont';
    src: url('../FONTS/Corbert-Regular-webfont.eot');
    src: url('../FONTS/Corbert-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../FONTS/Corbert-Regular-webfont.woff') format('woff'),
         url('../FONTS/Corbert-Regular-webfont.ttf') format('truetype'),
         url('WebFont.svg#webfont') format('svg');
  }
  
  
  body, html{ 
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .tile_component::-webkit-scrollbar{
    display: none;
  }
  
  .tile_component { 
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 80%;
    top:30px;
    margin:0;
    font-size: 13px;
    overflow-y: auto;
    z-index: 3;
    font-family: "Arvo", monospace;
  }
  
  .material-symbols-outlined.menuBar {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
  }
  
  
  .hamburgerMenu {
    position:absolute;
    left:5px;
    top:5px;
    z-index: 15;
    cursor: pointer;
  }
  
  .closeMenu {
    position:absolute;
    left:5px;
    top:5px;
    z-index: 15;
    cursor: pointer;
  }
  
  .menuWall {
    position:absolute;
    width:30%;
    height:100%;
    background:black;
    top:0;
    left:0;
    opacity:.8;
  }
  
  .message {
    border: 1px solid #d2d0d0;
    padding: 2em;
    font-size: 1.7vw;
    box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  }
  @supports (display: grid) {
    .message {
      display: none;
    }
  }
  
  .section {
    display: none;
    padding: 2rem;
  }
  @media screen and (min-width: 768px) {
    .section {
      
    }
  }
  @supports (display: grid) {
    .section {
      display: block;
    }
  }
  
  h1 {
    font-size: 2rem;
    margin: 0 0 1.5em;
  }
  
  .grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 150px;
    grid-auto-flow: row dense;
  }
  
  .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    background: #2A2A2A;
    color: #fff;
    grid-column-start: auto;
    grid-row-start: auto;
    color: #fff;
    background-position: center;
    box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    counter-increment: item-counter;
  }
  
  .box_1 {
    background-image: url("http://lrtillis.com/images/profilePic3.jpg");
    background-size: cover;
  }
  
  .box_2 {
    background-image: url("branding.jpg");
  }
  
  .box_3 {
    background-image: url("research.jpg");
  }
  
  .box_4 {
    background-image: url("signetJewelers.jpg");
    background-color:white;
  }
  
  .box_5 {
    background-image: url("citigroup.jpg");
    background-color:white;
  }
  
  .box_6 {
    background-image: url("siriusXM.jpg");
    background-color:black;
  }
  
  .box_7 {
    background-image: url("parkland.jpg");
    background-color:black;
  }
  
  .box_8 {
    background-image: url("texasHealth.jpg");
    background-color:black;
  }
  
  
  .item:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: black;*/
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
  }
  .item:hover {
    transform: scale(1.05);
  }
  .item:hover:after {
    opacity: 0;
  }
  .item--medium {
    grid-row-end: span 2;
  }
  .item--large {
    grid-row-end: span 3;
  }
  .item--full {
    grid-column-end: auto;
  }
  @media screen and (min-width: 768px) {
    .item--full {
      grid-column: 1/-1;
      grid-row-end: span 2;
    }
  }
  .item__details {
    position: relative;
    z-index: 1;
    padding: 15px;
    color: white;
    background: black;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: white;
  }
  .item__details:before {
    content: counter(item-counter);
    font-weight: bold;
    font-size: 1.1rem;
    padding-right: 0.5em;
    color: white;
  }
  
  .profilePic {
    position: absolute;
    display: block;
    bottom:50px;
    z-index: 10;
  }
  
  @media screen and (max-width: 480px) {
    .profilePic{
        width:50px;
        height:50px;
    }
  }
  
  @media screen and (min-width: 481px) {
    .profilePic{
        width:50px;
        height:50px;
    }
  }
  
  canvas {
    background-color: #000000;
  background-image: linear-gradient(315deg, #000000 0%, #414141 74%); }
  
  ul.tileMenu {
    position: absolute;
    list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
  color: white;
  }
  
  li.tileMenu {
    display: block;
    float:left;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  }
  
  title {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
  }
  
    
  .horizontalLineSpace {
    position:absolute;
    bottom: 5px;
    left:70px;
    width:1px;
    height:30px;
    background:white;
    z-index: 30;
  }
  
  header {
    position: absolute;
    width:100%;
    height:35px;
    top:0;
    left:0;
    background:black;
    z-index: 10;
  }
  
  footer {
    position: absolute;
    width:100%;
    height:50px;
    bottom:0;
    left:0;
    z-index: 10;
    background:black;
  }
  
  .sideBar {
    position: absolute;
    width: 50px;
    height:270px;
    background: black;
    z-index:2;
    opacity: .5;
  }
  
  .container {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    inset: -100px;
    background: radial-gradient(200px at left 400px top 150px,#ff53bb 100%,#0000), radial-gradient(200px at right 400px bottom 150px,#00f8d3 100%,#0000);
    filter: blur(250px); 
  }
  
  #enterBtn {
    position: absolute;
    width:200px;
    height:50px;
    background:black;
    bottom:150px;
    left:0;
    color:white;
    line-height: 3;
    font-family:'theGridFont'; 
    cursor: pointer;
    text-align: center;
  }
  
  #title{
  position:absolute; 
  left:0; 
  right:0;
  margin:0; 
  padding:0; 
  width:100%; 
  min-height:15%; 
  cursor:pointer; 
  z-index:600; 
  font-size:8vmin; 
  font-family:'theGridFont'; 
  top:35%;
  } 
  
  
  #title li{
  list-style-type:none; 
  padding:0; 
  z-index:300;  
  width:4%; 
  height:auto; 
  display:inline-block; 
  }
  
  .L{color:#ff4040;}
  .R{margin-left:10px;color:white;}
  .T{margin-left:10px;color:white;}
  .I{margin-left:10px;color:white;}
  .L1{margin-left:20px;color:white;}
  .L2{margin-left:20px;color:white;}
  .I1{margin-left:20px;color:white;}
  .S{margin-left:20px;color:white;}
  
  .titleName {
    position: absolute;
    font-family:'theGridFont'; 
    width:100%;
    left:10px;
    margin:auto;
    top:10px;
    text-align:center;
    font-size: 12px;
    color:white;
    z-index: 10;
    letter-spacing: 10px;
  }
  
  .informationConnect {
    position:absolute;
    width:100%;
    left:105px;
    bottom:5px;
    height:100px;
    line-height: 10px;
    color:white;
    font-family: 'theGridFont';
    font-size: 10px;
    z-index:15;
  }
  
  span {
    color:red;
  }
  
  
  