:root {
  --main-bg-black: black;
  --main-bg-white: white;
  --main-bg-grey: #171917;
  --main-bg-yellow: #ffdd4d;
  --rollover-orange: #ff6600;
  --rollover-blue: #00adc8;
  --rollover-yellow: #ffdd4d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content-black {
  background: var(--main-bg-black);
}

.content-white {
  background: var(--main-bg-white);
}

/* FROM CODEPEN */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*  LANDING PAGE */

#landing-page {
  height: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1005;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-name {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 0.1rem;
  color: var(--main-bg-white);
}

.title-job {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--main-bg-white);
}

.title-container h1 {
  font-family: kaneda-gothic, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 400px;
  line-height: 18rem;
  margin-bottom: 0.3rem;
  color: var(--main-bg-white);
}

.title-container h1 .portfolio {
  letter-spacing: 0.6rem;
}

.btn-light {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--main-bg-white);
}
.btn-dark {
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--main-bg-black);
}

.btn-light:hover,
.btn-dark:hover {
  cursor: pointer;
  color: var(--rollover-yellow);
}

h3 {
  font-family: kaneda-gothic, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 150px;
  color: black;
  text-align: center;
  padding-bottom: 10px;
  letter-spacing: 0.15rem;
}

/* ABOUT ME */

#about-page {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1005;
  height: 100%;
  padding-bottom: 70px;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  margin-top: 70px;
  background: var(--main-bg-white);
}

.about-container p {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin: 0 30px;
  color: black;
  max-width: 1000px;
  padding-bottom: 30px;
}

.about-container .work-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 70px;
}

.about-container .work-buttons .btn {
  font-family: kaneda-gothic, sans-serif;
  color: black;
  font-size: 100px;
  font-weight: 900;
  text-decoration: none;
  margin: 0 80px;
  padding: 5px 20px 10px 5px;
  letter-spacing: 0.15rem;
  transition: all 0.3s ease-in-out;
}

.about-container .work-buttons .btn:hover {
  color: white;
  background-color: black;
}

.about-container .portfolio-download {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-align: center;
  align-items: center;
  text-decoration: none;
  color: black;
}
.about-container .portfolio-download a {
  text-decoration: none;
  color: black;
}

.about-container .portfolio-download a:hover {
  text-decoration: none;
  color: var(--rollover-yellow);
}

/* ARTWORK */

#artwork-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 200;
}

.heading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--main-bg-white);
  background-color: var(--main-bg-black);
  width: 100%;
  z-index: 1005;
}

.heading-container h3 {
  color: var(--main-bg-white);
  background-color: var(--main-bg-black);
  /* width: 100%;
  z-index: 1005; */
}

#retouch-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 103;
}

/* Grid */
.clients {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 40px 0 50px;
  width: 80%;
  height: 100%;
}

.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.2rem;
}

.client-logo {
  width: 300px;
  height: 300px;
  border: 0.3rem solid black;
  overflow: hidden;
}

.client-logo:hover {
  border-color: var(--rollover-yellow);
  transition: all 0.3s ease-in-out;
}

.client-logo img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.client-logo img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.2, 1.2, 1.2);
}

/* FROM CODEPEN CLIENT WORK DROPDOWN */
.top {
  position: relative;
}

/*  Gallery */
.port {
  display: flex;
  flex-direction: row;
  position: absolute;
  text-align: center;
  width: 100%;
  overflow: none;
  top: 0;
  padding: 80px 0 80px;
  border-top: 0.5rem solid white;
  background-color: var(--main-bg-grey);
  z-index: 103;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.port img {
  width: 90%;
}

.port > * {
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.port.item_open {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.port > * {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.1s;
}

.client-work {
  margin: 0 auto;
  padding: 0;
}

/* .client-work .work-title h1 {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 23px;
  letter-spacing: 5px;
  text-align: center;
  color: var(--main-bg-white);
  margin-bottom: 0.5rem;
} */

.artwork h1,
.retouch h1 {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  /* letter-spacing: 5px; */
  text-align: center;
  color: var(--main-bg-yellow);
  margin-bottom: 0.5rem;
}

h2 {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  /* letter-spacing: 5px; */
  text-align: center;
  color: var(--main-bg-white);
  margin: 3rem 0 0.2rem;
}

.artwork p {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  color: var(--main-bg-white);
  margin-bottom: 1rem;
}

.retouch p {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  color: var(--main-bg-white);
  padding-bottom: 20px;
  border-bottom: var(--main-bg-yellow) solid 2px;
}

/* .client-work .work-title .artwork p {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  color: var(--main-bg-white);
  margin-bottom: 1rem;
} */

.work-title {
  margin: auto;
  width: 90%;
}

.work-description {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  text-align: center;
  width: 90%;
  margin: 0 auto 1rem;
  color: var(--main-bg-white);
  padding: 0 50px;
}

.close {
  position: absolute;
  right: 0;
  top: -50px;
  margin: 25px 20px 0 0;
  opacity: 1;
  z-index: 998;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: white;
}

.close:hover {
  color: var(--rollover-yellow);
  transition: all 0.3s ease-in-out;
}

.item_open .close {
  opacity: 1;
  top: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.artworkscroll-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: var(--main-bg-white);
  position: relative;
  z-index: 150;
}

.retouchscroll-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: var(--main-bg-white);
  position: relative;
  z-index: 1;
}

/* FOOTER */

#footer {
  color: var(--main-bg-black);
}

#footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

#footer a {
  color: var(--main-bg-white);
  text-decoration: none;
}

#footer a:hover {
  color: var(--rollover-yellow);
  transition: all 0.3s ease-in-out;
}

.footer-container .contact {
  display: flex;
  flex-direction: row;
  margin: 20px 0;
}

.footer-container .contact a {
  border-right: solid 2px var(--rollover-yellow);
  padding-right: 30px;
}

.footer-container .contact p {
  font-size: 15px;
  color: var(--main-bg-white);
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 5px;
  text-align: center;
  justify-content: center;
  padding-left: 30px;
}

.footer-container .contact p:first-child:hover {
  color: var(--rollover-yellow);
  transition: all 0.3s ease-in-out;
}

.footer-container .contact-name {
  font-size: 15px;
  color: var(--main-bg-white);
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 5px;
  text-align: center;
  justify-content: center;
  margin-bottom: 50px;
}

/*  > * means everything in that div */
/* .footer .social > * {
  margin-right: 0 50px;
} */

/* #footer .contact > * {
  margin: 0 1.5rem;
} */
