/* Global styles */

body {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    font-size: 100%;
}
h1 {
    font: 2em 'Special Elite', cursive;
    font-weight: 400;
    margin-bottom: -.3em;
}

h2 {
    font: 1.2em 'Special Elite', cursive;
    font-weight: 400;
}
h3 {
    font: 1.5em 'Heebo', sans-serif;
    font-weight: 100;
    margin-bottom: -.5em;
}

h4 {
    font: 1.3em 'Heebo', sans-serif;
    font-weight: 800; 
    margin-bottom: -1.3em;
    /* margin-top: -.01em; */
}

h5 {
    font: 1em 'Heebo', sans-serif;
    font-weight: 500; 
    margin-bottom: -.5em;
}

h6 {
    font: 1em 'Heebo', sans-serif;
    font-weight: 500; 
}


.experience {
    margin-bottom: -1em;
}

section {
    padding: 0px 20px 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

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

.active {
    background-color: #4CAF50;
}

.social {
    text-align: none;
    padding-bottom: -5px;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #111;
}

/* buttons on work page */

.link {
    background-color: white;
    border: none;
    padding: 2px 2px;
    display: inline-block;
    margin: auto;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.link-select:hover {
    background-color: #dcdcdc;
}

/* lulbot banners inline */
.lulzbanners {
            max-width: 1920px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 8px;
			}

.banners {
            display: inline-block;
            max-width: 32.5%;
            border: 1px solid black;
			}

video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
}

/* Three image containers (use 25% for four, 33.33% for 3, and 50% for two, etc) */
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

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

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .column {
    width: 100%;
  }
}

/* Responsive iframe - 400x400 */
.container400 {
  max-width: 400px; 
  max-height: auto; 
}

.iframe-container400 {
  position: relative;
  overflow: hidden;

  padding-top: 100%; /* 1x1 Aspect Ratio (divide 1 by 1 = 1) */
}

/* Responsive iframe - 728x90 */
.iframe-container728 {
  position: relative;
  overflow: hidden;

  padding-top: calc(90 / 728 * 100%); /* 1x1 Aspect Ratio (divide 90 by 728 = .12362637) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe400 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding-top: 20px;
  padding-right: 20px;
  width: 100%;
  height: 100%;
  border: 0;
}

.responsive-iframe728 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}