/* Start of CSS affecting direct tags */

body {
  background-color: #231e2b;
  color: #7fccf5;
  font-family: Arial;
  padding-bottom: 100px;
}
h3 {
  color: #05ffc1;
}
a {
  cursor: pointer;
  color: #b5acc2;
}
img {
  width: 700px;
  height: 450px;
}
video {
  width: 700px;
  height: 450px;
}
/* End of CSS affecting direct tags */

/* Start of universal classes */

.title {
  text-align: center;
  font-size: 1.5em;
}
/* Yellow: #f53133  */
.desc {
  padding-right: 5%;
}
.nav {
  font-weight: bold;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}
.navItem {
  display: inline-flex;
  margin: 25px 0;
  width: 100%;
  justify-content: center;
  border-right: 1px solid #7fccf5;
  padding: 0.5rem 0.5rem;
}
.navActiveItem {
  color: #f58733;
  font-size: 18px;
}
/* Orange hex: #f58733  */
.navList {
  display: inline-flex;
  width: 45%;
}
.navInactiveItem {
  transition: 0.15s ease-in-out;
}
.navInactiveItem:hover {
  color: #f58733;
}

/* End of universal classes */

/* Start of slide show classes */

.slideShow {
  max-width: auto;
  padding-left: 30px;
  position: relative;
  margin: auto;
}
.slides {
  display: none;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: 22px;
  padding: 16px;
  color: #7fccf5;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0.1%;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  color: #f58733;
}
.caption {
  color: #7fccf5;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%
  text-align: center;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* End of slide show classes */

/* Start of programming content classes */

.mainContent {
  display: none;
  flex-direction: column;
  opacity: 0;
}
.videoShowcase {
  max-width: auto;
  padding-left: 30px;
  position: relative;
  margin: auto;
}
/* End of programming content classes */

/* Start of CV classes */

#envelope, #phone {
  font-size: 48px;
  padding: 0;
  margin: 0;
}
#email, #phoneNum {
  display: flex;
}
#cv {
  padding-left: 20px;
  margin: 0 12.5%;
}
@media (max-width: 640px) {
  #cv {
    margin: 0 5%;
  }
}

/* End of CV classes */

/* Start of exception classes */

.liException {
  border: none;
}
.showMe {
  transition: 0.5s ease-in-out;
  opacity: 1;
  display: flex;
}
.h3Exception {
  color: #7fccf5;
}

/* End of exception classes */
