* {
  box-sizing: border-box;
}
body {
  height: 100%;
  margin: 0;
  background-image: linear-gradient(135deg, rgba(111,111,222,.2), rgba(111,111,111,.8));
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: black;
  transition: font-size 1s, background-color 1s, color 1s;
}
#TheHeader {
  text-shadow: 4px 4px 8px black;
  animation-duration: 2s;
  animation-name: FontGrow;
  animation-iteration-count: 1;
}
#SubHeader {
  text-shadow: 4px 4px 8px black;
  animation-duration: 1s;
  animation-name: FontGrow;
  animation-iteration-count: 1;
}
@keyframes FontGrow {
  from {font-size: 0px;}
  to {font-size: scale(1);}
}
h1 {
  padding: 2px;
  margin: 0;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(18px + 3vw);
  font-weight: bold;
  color: #800020;
  transition: font-size 1s, background-color 1s, text-shadow 1s;
}
h2 {
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 1.5vw);
  font-weight: bold;
  transition: font-size 1s, background-color 1s, color 1s;
}
h3 {
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 1.02vw);
  font-weight: bold;
  transition: font-size 1s, background-color 1s, color 1s;
}
h4 {
  margin: 0;
  text-align: center;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(14px + 1vw);
  font-weight: bold;
  color: #800020;
  transition: font-size 1s, background-color 1s, text-shadow 1s;
}
#TheMenu {
  display: inline-block;
  list-style-type: none;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 1.02vw);
  font-weight: bold;
  margin-top: 3%;
  padding-top: 1.5%;
  padding-right: 1%;
  padding-bottom: 0%;
  padding-left: 1%;
  overflow: hidden;
}
#TheMenu a {
  color: white;
  text-shadow: 2px 2px #800020;
}
#TheMenu a:hover {
  color: yellow;
}
.dropdown {
  float: left;
  padding-right: 80px;
  padding-left: 80px;
}
.drop-menu {
  display: block;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 0.98vw);
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
  cursor: pointer;
  transition: font-size 1s, color 1s;
}
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 1;
  transition: font-size 1s, background-color 1s, color 1s, opacity 1s linear;
}
.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.left-bar {
  width: 20%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-image: linear-gradient(180deg, rgba(222,222,222,.2), rgba(111,111,111,.8));
  position: fixed;
  z-index: 1;
  overflow: hidden;
  transition: background-color 1s, color 1s;
}
.left-menu {
  width: 100%;
  text-align: left;
  text-indent: 15%;
  margin-left: 0px;
  margin-top: 25%;
  display: block;
  border: none;
  list-style-type: none;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 1.02vw);
  font-weight: bold;
  padding-right: 0%;
  padding-left: 0%;
  transition: font-size 1s, background-color 1s, color 1s;
}
.sub-menu {
  display: block;
  text-align: left;
  text-indent: 10%;
  border: none;
  list-style-type: none;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + .5vw);
  font-weight: bold;
  transition: font-size 1s, background-color 1s, color 1s;
}
li.lefty {
  padding-top: 4%;
  padding-bottom: 4%;
  transition: background-color 1s;
}
li.lefty:hover {
  background-color: LightSlateGray;
}
.YouAreHere {
  background-color: LightSlateGray;
  transition: background-color 1s;
}
a {
  border: none;
  color: black;
  text-decoration: none;
  transition: font-size 1s, background-color 1s, color 1s;
}
a:hover {
  color: yellow;
}
p {
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + .6vw);
  font-weight: normal;
  transition: font-size 1s, background-color 1s, color 1s;
}
.circle {
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.Rounded {
  width: 95%;
  border-style: groove;
  border-width: 4px;
  border-color: LightSlateGray;
  border-radius: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 4px;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + .5vw);
  font-weight: normal;
  transition: font-size 1s;
}
#FirstSite, #FirstExer {
  margin-left: 25%;
}
div.SiteThumb {
  float: left;
  margin-left: 5%;
  width: 18%;
  position: relative;
  display: inline-block;
}
img.SiteThumb {
  width: 100%;
  cursor: pointer;
  transition: opacity 1s;
}
.SitePrev {
  display: none;
  opacity: 0;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1;
  transition: opacity 1s;
}
img.SiteThumb:hover {
  opacity: 0.5;
}
.SiteThumb:hover .SitePrev {
  display: block;
  opacity: 1;
}
.Desc {
  padding: 15px;
  text-align: center;
  cursor: pointer;
}
#WebPackages, #SupportPackages {
  border-collapse: collapse;
  border: 1px solid black;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(10px + .6vw);
  font-weight: normal;
  transition: font-size 1s, background-color 1s, color 1s;
}
#WebPackages th, td {
  border: 1px solid black;
}
#SupportPackages th, td {
  border: 1px solid black;
}
#RemoteServices {
  list-style-type: circle;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(10px + .6vw);
  font-weight: normal;
  transition: font-size 1s, background-color 1s, color 1s;
}
#OnsiteServices, #WebServices {
  list-style-type: disc;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(10px + .6vw);
  font-weight: normal;
  transition: font-size 1s, background-color 1s, color 1s;
}
.Bronze {background-color: #CD7F32}
.Silver {background-color: #C0C0C0}
.Gold {background-color: gold}
.Platinum {background-color: #E5E4E2}

footer {
  position: relative;
  left: 0px;
  bottom: 0px;
  width: 100%;
  color: black;
  text-align: center;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(10px + 0.75vw);
  font-weight: normal;
  animation-duration: 1s;
  animation-name: FontGrow;
  animation-iteration-count: 1;
}
.AbsoluteFooter {
  position: absolute;
}
.HomeFooter {
  color: white;
}
img.behind {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.Content {
  margin-left: 22%;
}
.SlideFromLeft {
  animation-duration: 1s;
  animation-name: SlideFromLeft;
  animation-iteration-count: 1;
}
@keyframes SlideFromLeft {
  from {left: -20%;}
  to {left: 0%;}
}
.SlideFromRight {
  animation-duration: 1s;
  animation-name: SlideFromRight;
  animation-iteration-count: 1;
}
@keyframes SlideFromRight {
  from {margin-left: 80%;}
  to {margin-left: 22%;}
}
.SlideFromBottom {
  animation-duration: 1s;
  animation-name: SlideFromBottom;
  animation-iteration-count: 1;
}
@keyframes SlideFromBottom {
  from {margin-top: 40%;}
  to {margin-top: 3%;}
}
.Widen50 {
  animation-duration: 1s;
  animation-name: Widen50;
  animation-iteration-count: 1;
}
@keyframes Widen50 {
  from {width: 0%;}
  to {width: 50%;}
}
.Widen70 {
  animation-duration: 1s;
  animation-name: Widen70;
  animation-iteration-count: 1;
}
@keyframes Widen70 {
  from {width: 0%;}
  to {width: 70%;}
}
.Widen90 {
  animation-duration: 1s;
  animation-name: Widen90;
  animation-iteration-count: 1;
}
@keyframes Widen90 {
  from {width: 0%;}
  to {width: 90%;}
}
.Widen100 {
  animation-duration: 1s;
  animation-name: Widen100;
  animation-iteration-count: 1;
}
@keyframes Widen100 {
  from {width: 0%;}
  to {width: 100%;}
}
/* For Tablets */
@media screen and (max-width: 777px) {
.sub-menu {
  display: none;
}
}

/* For Phones */
@media screen and (max-width: 490px) {
body {
  height: 100%;
  margin: 0;
  background-image: linear-gradient(135deg, rgba(200,11,12,.2), rgba(11,12,200,.8));
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: black;
  transition: font-size 1s, background-color 1s, color 1s;
}
.left-bar {
  width: 100%;
  height: 5%;
  left: 0px;
  top: 0px;
  background-image: linear-gradient(180deg, rgba(222,222,222,.2), rgba(111,111,111,.8));
  position: fixed;
  z-index: 1;
  overflow: hidden;
  transition: background-color 1s, color 1s;
}
.left-menu {
  text-indent: 0%;
  margin-left: 0px;
  margin-top: 0px;
  display: inline;
  border: none;
  list-style-type: none;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 1.02vw);
  font-weight: bold;
  padding-right: 0%;
  padding-left: 0%;
  transition: font-size 1s, background-color 1s, color 1s;
}
.sub-menu {
  display: none;
}
li.lefty {
  display: inline-block;
  width: 24%;
  text-align: center;
  padding-top: 0%;
  padding-bottom: 0%;
  transition: background-color 1s;
}
li.lefty:hover {
  background-color: LightSlateGray;
}
.YouAreHere {
  background-color: LightSlateGray;
  transition: background-color 1s;
}
#HomeImage, #HomeLink {
  display: none;
}
#TheOwner, #MyPortfolio, #ITSupport, #ContactMe {
  margin-top:  12%;
}
.Content {
  margin-left: 4%;
  margin-right: 4%;
}
#FirstSite, #FirstExer {
  margin-left: 10%;
}
div.SiteThumb {
  float: none;
  width: 80%;
  margin-left: 10%;
  margin-top: 5%;
  position: relative;
  display: block;
}
img.SiteThumb {
  cursor: pointer;
  transition: opacity 1s;
}
.SitePrev {
  display: none;
}
img.SiteThumb:hover {
  opacity: 0.5;
}
.SiteThumb:hover .SitePrev {
  display: none;
}
.SlideFromRight {
  animation-duration: 1s;
  animation-name: NoSlide;
  animation-iteration-count: 10;
}
@keyframes NoSlide {
  from {font-size: scale(0);}
  to {font-size: scale(1);}
}
}

/* For Home Page Specifically */
@media screen and (max-width: 1000px) {
#TheMenu {
  display: block;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(12px + 2vw);
  font-weight: bold;
  margin-top: 100px;
}
.dropdown {
  float: none;
  padding-top: 2%;
  padding-bottom: 2%;
}
.drop-menu {
  display: none;
}
}

/* For Home Page - Sideways Phone */
@media screen and (max-width: 700px) and (max-height: 300px) {
#TheMenu {
  display: inline-block;
  font-family: 'Times New Roman', Verdana;
  font-size: calc(10px + 1vw);
  font-weight: bold;
  margin-top: 5%;
  margin-left: 15%;
}
.dropdown {
  float: left;
  padding-top: 2%;
  padding-bottom: 2%;
}
.drop-menu {
  display: none;
}
}

/* For footers that get squished */
@media screen and (max-height: 500px) {
.AbsoluteFooter {
  position: relative;
}
}
