@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

#navbar {
  background-color: #f3f4f1;
}
#navbar .nav-items {
  display: flex;
  align-items: center;
  text-align: center;
}
#navbar .nav-items a {
  margin: 50px;
  text-decoration: none;
  color: #484848;
  font-family: Raleway;
  font-variant: all-small-caps;
  font-size: 23px;
  opacity: 1;
  transition: 0.3s linear;
}
#navbar .nav-items a:hover {
  opacity: 0.5;
  transform: translateY(-1.5px);
}

.sidebar,
.mobile-nav {
  display: none;
}

@media only screen and (max-width: 35rem) {
  #navbar {
    display: none;
  }

  .sidebar {
    font-family: Raleway;
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Stay on top */
    top: 0;
    left: 0;
    display: block;
    background-color: #484848;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidebar */
    /* Position and style the close button (top right corner) */
  }
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    display: block;
    transition: 0.3s;
    font-variant: all-small-caps;
  }
  .sidebar a:hover {
    color: #f1f1f1;
  }
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 60px;
    margin-left: 50px;
  }
  .sidebar .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  .sidebar .openbtn:hover {
    background-color: #444;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f4f1;
  }
  .mobile-nav i {
    padding-left: 1rem;
    font-size: 2rem;
    color: #484848;
  }
  .mobile-nav img {
    margin-left: -3rem;
    margin-top: 0.5rem;
  }
}
.sub-title {
  font-size: 35px;
  font-family: Raleway;
  font-variant: all-small-caps;
  text-align: center;
}

.header {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav-items {
  padding-top: 1rem;
}
.header .center-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 620px;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 5px 10px 18px #888888;
  background-color: #ffffff;
  background-image: url("../assets/plant-header.jpg");
  background-size: cover;
}
.header .center-card .main-title {
  font-size: 100px;
  font-family: Raleway;
  font-weight: lighter;
  font-variant: all-small-caps;
  text-align: center;
  color: #484848;
}
@media only screen and (max-width: 35rem) {
  .header .center-card {
    width: 90%;
    margin: 0 auto;
  }
  .header .center-card .main-title {
    font-size: 90px;
  }
}

#sec1 {
  font-family: Raleway;
  transition: margin-left 0.5s;
  /* If you want a transition effect */
}
#sec1 .icon-row .icon-element i {
  font-size: 3rem;
  padding: 20px 70px;
  color: #484848;
}
#sec1 .icon-row .icon-element h5 {
  text-align: center;
  color: #484848;
}
#sec1 .circle-btn {
  margin: 5rem 2rem 0 0;
}
@media only screen and (max-width: 35rem) {
  #sec1 .mobile-align {
    flex-direction: column;
    text-align: center;
  }
}

#sec2 {
  font-family: Raleway;
  margin-top: 7rem;
}
#sec2 .sec-container {
  display: grid;
  grid-template-columns: 3fr 10fr 10fr;
  justify-self: start;
  column-gap: 40px;
}
#sec2 .sec-container .portrait {
  justify-self: center;
  height: 250px;
  border-radius: 20px;
}
#sec2 .sec-container .intro-text {
  font-size: 19px;
  line-height: 45px;
}

@media only screen and (max-width: 35rem) {
  #sec2 {
    margin-top: 4rem;
  }
  #sec2 .sec-container {
    grid-template-columns: 100%;
  }
  #sec2 .intro-text,
  #sec2 .about-me-text {
    padding: 0 1rem;
    text-align: center;
  }
}
#sec3 {
  font-family: Raleway;
}
#sec3 .sub-title {
  padding-top: 2rem;
}
#sec3 .sec-container {
  display: grid;
  grid-template-columns: 15fr 15fr 15fr;
  justify-self: start;
  column-gap: 50px;
}
#sec3 .horizon-line {
  border: 3px solid #484848;
  width: 100px;
  margin: 2rem;
}

@media only screen and (max-width: 35rem) {
  #sec3 {
    margin-bottom: 10rem;
  }
  #sec3 .sec-container {
    grid-template-columns: 100%;
    row-gap: 50px;
  }
  #sec3 .sec-container .shadow-card {
    justify-self: center;
    width: 90%;
  }
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f3f4f1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
}
footer .icon-styles {
  margin-left: 2rem;
}
footer .icon-styles a {
  font-size: 2rem;
  text-decoration: none;
  color: #484848;
  padding: 0 0.5rem;
  transition: 0.5s ease;
}
footer .icon-styles a:hover {
  transition: 0.5s ease;
  opacity: 0.5;
}
footer .copyright {
  font-family: Raleway;
  margin-right: 2rem;
}
footer .copyright p i {
  color: #484848;
  margin-right: 0.5rem;
}

@media only screen and (max-width: 35rem) {
  footer {
    flex-direction: column;
    justify-content: center;
    height: 70px;
  }
  footer .icon-styles {
    margin-left: 0;
  }
  footer .copyright {
    margin-right: 0;
  }
}
.sec-container {
  display: grid;
  grid-template-columns: 10fr 10fr 10fr 10fr;
  column-gap: 40px;
  row-gap: 40px;
}

#secSub1 {
  color: #484848;
  font-family: Raleway;
  margin-bottom: 8rem;
}
#secSub1 .main-title {
  font-size: 65px;
  font-variant: all-small-caps;
}
#secSub1 .sub-title {
  font-size: 24px;
  font-weight: lighter;
  font-variant: normal;
}
#secSub1 .portfolio-links {
  margin-bottom: 2rem;
}
#secSub1 .portfolio-links p {
  color: #484848;
  font-size: 26px;
  margin: 10px 14px 10px 14px;
  font-weight: bold;
  font-variant: all-small-caps;
}
#secSub1 .portfolio-links p:hover {
  cursor: pointer;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(150, 183, 162, 0.42) 50%
  );
}
#secSub1 #projectContainer .shadow-card {
  position: relative;
  font-family: Raleway;
}
#secSub1 #projectContainer .shadow-card .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: rgba(72, 72, 72, 0.78);
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s ease-in-out;
}
#secSub1 #projectContainer .shadow-card h2 {
  color: #eeeeee;
  font-weight: 900;
  font-variant: all-small-caps;
  font-size: 34px;
  text-align: center;
  padding-bottom: 1rem;
}
#secSub1 #projectContainer .shadow-card p {
  color: #e2e3e5;
  font-weight: 100;
}
#secSub1 #projectContainer .shadow-card:hover .overlay {
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

@keyframes fadeinout {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media only screen and (max-width: 35rem) {
  #secSub1 .sec-container {
    padding: 0 10px 0 10px;
    grid-template-columns: 100%;
  }
  #secSub1 .mobile-align {
    flex-direction: column;
    text-align: center;
  }
}
#secAbout1 {
  font-family: Raleway;
  color: #484848;
  margin-bottom: 8rem;
}
#secAbout1 .sec-container {
  display: grid;
  grid-template-columns: 3fr 10fr 10fr;
  justify-self: start;
  column-gap: 40px;
}
#secAbout1 .sec-container .portrait {
  justify-self: center;
  height: 250px;
  border-radius: 20px;
}
#secAbout1 .sec-container .intro-text {
  font-size: 19px;
  line-height: 45px;
}
#secAbout1 .main-title {
  font-size: 65px;
  font-variant: all-small-caps;
}
#secAbout1 .sub-title {
  font-size: 24px;
  font-weight: lighter;
  font-variant: normal;
}

@media only screen and (max-width: 35rem) {
  #secAbout1 .sec-container {
    display: grid;
    grid-template-columns: 100%;
  }
  #secAbout1 .sec-container .portrait {
    justify-self: center;
    height: 250px;
    border-radius: 20px;
  }
  #secAbout1 .sec-container .about-me-text {
    padding: 0 1rem;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.slant-bg {
  background: linear-gradient(-187deg, #f3f4f1 55%, white 25%);
}

.slant-bg-right {
  background: #f3f4f1;
  transform: skewY(-7deg);
}

.slant-bg-left {
  background: #f3f4f1;
  transform: skewY(7deg);
}

.no-transform-right {
  transform: skewY(7deg);
}

.no-transform-left {
  transform: skewY(-7deg);
}

.flx {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.align-vertical {
  align-items: center;
}

.sec-container {
  max-width: 77rem;
  margin: 0 auto;
}

.text-bold {
  font-weight: 800;
}

.text-light {
  font-weight: 100;
}

.text-gray {
  color: #939292;
}

.shadow-card {
  border-radius: 10px;
  box-shadow: 5px 10px 18px #888888;
  height: 300px;
  transition: all 0.4s ease-in-out;
}

.shadow-card:hover {
  transform: translateY(-20px);
  box-shadow: 10px 15px 20px #888888;
  cursor: pointer;
}

#moabSite {
  background-image: url("../assets/moab-project.png");
  background-size: cover;
}

#roadWarriors {
  background-image: url("../assets/road-warriors-site.png");
  background-size: cover;
}

#pomodoroApp {
  background-image: url("../assets/pomodoro-app.png");
  background-size: cover;
}

#calmMindSite {
  background-image: url("../assets/calm-mind_site-preview.png");
  background-size: cover;
}

#entertainmentApp {
  background-image: url("../assets/entertainment-app.png");
  background-size: cover;
}

#werewolfApp {
  background-image: url("../assets/werewolf-app.png");
  background-size: cover;
}

#cardExample {
  background-image: url("../assets/cards-example.png");
  background-size: cover;
}

#todoApp {
  background-image: url("../assets/todo-app.png");
  background-size: cover;
}

#cozyCornerSite {
  background-image: url("../assets/cozy-corner.png");
  background-size: cover;
}

.highlight {
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(150, 183, 162, 0.42) 50%
  );
}

.horizon-line {
  border: 3px solid #484848;
  width: 100px;
  margin: 2rem;
}

.button {
  display: inline-flex;
  height: 40px;
  width: 150px;
  border: 2px solid #484848;
  margin-top: 25px;
  color: #484848;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.button .circle {
  width: 0;
  height: 0;
  opacity: 0;
  line-height: 40px;
  border-radius: 50%;
  background: #484848;
  position: absolute;
  transition: all 0.5s ease-Out;
  top: 20px;
  left: 70px;
}

.circle-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.circle-btn a {
  position: relative;
  transition: all 0.45s ease-out;
  color: #484848;
  text-decoration: none;
}
.circle-btn .fa-envelope-open,
.circle-btn .fa-plus {
  margin-left: 0.5rem;
}

.circle-btn:hover .circle {
  width: 200%;
  height: 500%;
  opacity: 1;
  top: -70px;
  left: -70px;
}

.circle-btn:hover a {
  color: #ffffff;
}

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