* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

:root {
  --primary-blue-1: #b8c3c2;
  --primary-yellow-1: #e6dec9;
  --color-grey-dark: #333;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.35);
  --shadow-light: 0 2rem 4rem rgba(0, 0, 0, 0.03);
  --font-body: "Poppins", sans-serif;
  --font-heading: "Josefin Sans", sans-serif;
  --font-color: #1a1c1c;
  --background-start-rgb: 184, 195, 194; /* RGB values for #b8c3c2 */
  --background-end-rgb: 216, 223, 222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

.heading-primary {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
}

.heading-secondary {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.heading-tertiary {
  font-size: 1.75rem;
  color: #fff;
}

li {
  font-size: 2.35rem;
}
li p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}

.li-paragraph {
  list-style: none;
}

.li-paragraph p {
  color: #212529;
  font-size: 1.25rem;
}

.c-link {
  color: #fff;
  font-weight: 500;
}

#html-bar,
#css-bar,
#js-bar,
#node-bar {
  margin: 20px 20px 20px 0;
  width: 400px;
  height: 8px;
  position: relative;
}

.hero {
  color: var(--font-color);
}
.hero__content {
  margin-top: 70px;
}
.hero__content h1 {
  max-width: 1200px;
}
.hero__content aside {
  max-width: 1000px;
}
.hero__text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}
.hero__wrapper {
  flex: 1;
  margin-top: 5rem;
}
.hero__profile {
  display: none;
}
.hero__social {
  display: flex;
  align-items: center;
}
.hero__social li {
  list-style: none;
}
.hero__link-icon {
  margin-right: 2.5rem;
  transition: 0.2s;
}
.hero__link-icon:hover {
  color: #e4e4e4;
}

.social-icon {
  margin-right: 1rem;
  transition: 0.2s;
  color: var(--color-grey-dark);
}

.hero__link-icon {
  font-size: 4rem;
  color: #fff;
}

.social-flex {
  color: var(--primary-yellow-1);
}

.about__text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
}
.about__text:last-of-type {
  margin-bottom: 0;
}

.qualifications li {
  list-style: none;
}
.qualifications__text {
  font-size: 1.2rem;
}

.projects {
  height: 100%;
}
.projects__box {
  display: flex;
  display: -webkit-flexbox;
  flex-direction: column;
  margin: 1.5rem auto;
}
.projects__box-info {
  display: flex;
  display: -webkit-flexbox;
  flex-direction: column;
  font-size: 1.2rem;
}
.projects__box-info h5 {
  font-size: 1.5rem;
  text-decoration: underline;
}
.projects-img {
  -webkit-filter: brightness(100%);
  width: 100%;
  border: 2px solid #d8d8d8;
  padding: 2rem;
  border-radius: 3px;
  width: 100%;
}
.projects__img-box {
  position: relative;
  margin: 0 auto;
}
.projects__img-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-transform: uppercase;
  font-size: 1.6rem;
  opacity: 0;
  transition: all 0.5s;
  color: #fff;
  backface-visibility: hidden;
}

.about,
.skills,
.qualifications,
.projects,
.current-projects {
  padding: 3.2rem 0;
}

/*caption on picture*/
.projects__img-box:hover .projects__img-caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/*darkening effect on hover*/
.projects__img-box:hover .projects-img {
  -webkit-filter: brightness(75%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.project-description {
  width: 100%;
}

.tech-used {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f25a2e;
}

body {
  background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
}

.hero,
.gallery {
  margin-bottom: 10rem;
}

#html-bar,
#css-bar,
#js-bar,
#node-bar {
  width: 100%;
}

.qualifications {
  background-color: var(--color-grey-dark);
  color: #fff;
}
.qualifications__date {
  font-size: 1rem;
}

.current-projects {
  height: 100%;
  background-color: var(--color-grey-dark);
  color: #fff;
}

.process {
  border-bottom: 2px solid black;
  padding: 2rem 0;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 2.5rem 0;
}

@media (min-width: 1025px) {
  .hero__content {
    margin-top: 110px;
  }
}

/*# sourceMappingURL=styles.css.map */
