@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
body {
  background: #a0aecd;
  width: 100%;
  color: #f7f4e9;
  padding: 15px;
}
a {
  color: #1d1d2c;
}
.onPage {
  color: #a0aecd;
  border-bottom: 3px solid #a0aecd;
}
.hidden {
  display: none;
  opacity: 0%;
}
/* KEYFRAMES */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes about-me-load {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes skills-section-load {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes contact-load {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slow-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: #f7f4e9;
  }
}
/* HEADER STYLES */
.header {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  background: #f7f4e9;
  border-radius: 10px 10px 0 0;
}
.header-title {
  width: 100%;
  display: flex;
}
.header a {
  text-decoration: none;
}
.header h1 {
  font-family: "Roboto Condensed";
  font-weight: bold;
  color: #1d1d2c;
  font-size: 24px;
  letter-spacing: 0.5px;
  padding: 20px 0 20px 45px;
  cursor: pointer;
}
.header span {
  color: #a0aecd;
  font-size: 27px;
}
.nav {
  color: #1d1d2c;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 25px;
}
.nav h2 {
  font-family: "Roboto Condensed";
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}
.nav h2 a {
  padding: 22px 21px 19px 21px;
}
.nav h2 a:hover {
  color: #a0aecd;
  background-color: rgba(60, 60, 60, 0.1);
}
/* END HEADER STYLES */
/* START HOMEPAGE STYLES */
#home {
  background: #1d1d2c;
  padding-bottom: 40px;
  border-radius: 0 0 10px 10px;
}
.home-container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  padding-top: 30px;
}
.picture-section {
  width: 33%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 2.5px solid #a0aecd;
  border-radius: 10px;
  padding-top: 10px;
  margin-left: 50px;
}
.picture-section img {
  height: 275px;
  width: 275px;
  border-radius: 50%;
  object-fit: cover;
}

.picture-section h2 {
  font-size: 40px;
  margin-top: 25px;
  text-align: center;
}
.picture-section h3 {
  font-size: 25px;
  margin-top: 25px;
  text-align: center;
  line-height: 28px;
}
.picture-section h4 {
  font-size: 20px;
  margin-top: 25px;
  line-height: 24px;
  text-align: center;
  padding: 0 10px;
}
.picture-section h5 {
  margin-top: 10px;
  text-align: center;
}
.icons {
  font-size: 40px;
  margin-top: 25px;
}
.icons .fab {
  color: #a0aecd;
}
.icons .fas {
  color: #a0aecd;
}
.icons .fas:hover,
.icons .fab:hover {
  transform: scale(1.25);
}
.about-me {
  text-align: left;
  font-family: "Inter";
  width: 50%;
}
.about-me-h1 {
  width: 270px;
}
.about-me h1 {
  font-size: 56px;
  margin-bottom: 15px;
  color: #a0aecd;
  overflow: hidden;
  border-right: 0.1em solid beige;
  white-space: nowrap;
  width: 0;
  animation: typing 1.8s steps(15, end) forwards 0.1s, blink 1s infinite ease-in-out 0.5s;
}
.about-me p {
  font-size: 20px;
  width: 100%;
  line-height: 26px;
  animation: about-me-load 0.6s ease-in 2.1s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.contact-info {
  margin-top: 35px;
  width: 100%;
}
.contact-info span {
  color: #a0aecd;
}
.contact-info a {
  color: beige;
  text-decoration: none;
}
/* END HOMEPAGE STYLES */

/*START SKILLS STYLES */
#skills {
  font-family: "Inter";
  width: 100%;
  background-color: #1d1d2c;
  border-radius: 0 0 10px 10px;
}
.education-h1 {
  font-size: 46px;
  text-align: center;
  padding-top: 20px;
  animation: slow-fade 1s ease-in 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.education-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  animation: about-me-load 0.7s ease-in 0.5s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.school {
  display: flex;
  flex-direction: column;
  width: 33%;
}
.degree {
  display: flex;
  justify-content: center;
  font-size: 24px;
  padding-bottom: 10px;
}
.degree h2 {
  padding-left: 10px;
}
.location {
  text-align: center;
  color: #a0aecd;
  font-size: 19px;
  line-height: 24px;
}
.location a {
  color: #a0aecd;
}
.skills-spacer {
  height: 1px;
  background-color: #a0aecd;
  margin-top: 35px;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing 1s steps(60, end) forwards 1s;
}
.skills-h1 {
  font-size: 46px;
  text-align: center;
  padding-top: 20px;
  animation: slow-fade 1s ease-in 1.9s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.skills-section {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  padding-bottom: 20px;
}
.skills {
  width: 400px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 0;
}
.skills.one {
  animation: about-me-load 0.6s ease-in 2.2s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.skills.two {
  animation: about-me-load 0.6s ease-in 2.4s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.skills.three {
  animation: about-me-load 0.6s ease-in 2.6s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.skills.four {
  animation: about-me-load 0.6s ease-in 2.8s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.skills.five {
  animation: about-me-load 0.6s ease-in 3s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.skills.six {
  animation: about-me-load 0.6s ease-in 3.2s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
}
.skills p {
  font-size: 18px;
  padding-top: 7px;
}
.skills .fab,
.skills .fas {
  font-size: 54px;
  padding-bottom: 15px;
  color: #a0aecd;
}
/* END SKILLS STYLES */

/* START PROJECTS STYLES */
#projects {
  font-family: "Inter";
  width: 100%;
  background-color: #1d1d2c;
  display: flex;
  flex-direction: row;
  border-radius: 0 0 10px 10px;
}
.tech-website-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.tech-header.first {
  text-align: center;
  font-size: 58px;
  margin-top: 60px;
  color: #a0aecd;
}
.tech-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 58px;
  margin-top: 30px;
  color: #a0aecd;
}
.tech-header h1 {
  text-align: center;
}
.tech-header-line {
  width: 400px;
  height: 2px;
  background-color: #a0aecd;
  margin: 0 30px;
}
.websites-container {
  margin-top: 40px;
  padding-bottom: 20px;
}
.website {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
}
.description-name {
  font-size: 36px;
  display: flex;
  text-align: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 35px;
}
.website-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.website-image a {
  display: flex;
  justify-content: center;
  cursor: default;
}
.image:hover {
  transform: scale(1.02);
  cursor: pointer;
}
.image {
  background-size: cover;
  display: flex;
  justify-content: center;
  width: 60%;
  padding: 5px;
  box-shadow: 1px 1px 6px 3px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.description {
  display: flex;
  text-align: center;
  flex-direction: column;
  width: 50%;
  font-size: 30px;
  padding: 25px 0 10px 0;
  margin: 0 auto;
  line-height: 34px;
}
.tools {
  text-align: center;
  font-size: 24px;
  color: #a0aecd;
  padding-bottom: 50px;
}
.reveal {
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 2s ease;
}
.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}
.topArrow {
  position: fixed;
  right: 50px;
  bottom: 10px;
  padding-bottom: 30px;
  animation: slow-fade 1s ease-in 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.topArrow:hover {
  transform: scale(1.1);
}
.topArrow .fas {
  cursor: pointer;
  font-size: 50px;
  color: #a0aecd;
}
/* END PROJECTS STYLES */

/* START CONTACT STYLES */
#contact {
  font-family: "Inter";
  width: 100%;
  background-color: #1d1d2c;
  border-radius: 0 0 10px 10px;
}
.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 115px;
  padding-bottom: 115px;
  animation: contact-load 0.7s ease-in 0.1s;
  animation-fill-mode: forwards;
  transform: translateY(-20px);
  opacity: 0;
}
.contact-box {
  display: flex;
  border: 2px solid beige;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  padding: 100px;
  margin: 0 60px;
}
.contact-h1 {
  font-size: 50px;
  color: #a0aecd;
  text-align: center;
  padding-bottom: 25px;
}
.contact-p {
  font-size: 24px;
  text-align: center;
  line-height: 26px;
}
.button-div {
  text-align: center;
  padding-top: 40px;
  display: flex;
  justify-content: center;
}
.button-div p {
  text-decoration: none;
  font-size: 24px;
  padding: 20px 40px;
  width: 100%;
  color: #a0aecd;
  background-color: transparent;
  border: 2px solid #a0aecd;
  border-radius: 10px;
  cursor: pointer;
}
.button-div p:hover {
  transform: scale(1.1);
}
/* END CONTACT STYLES */
/* TABLET MEDIA QUERIES */
@media screen and (max-width: 1024px) {
  /* HOMEPAGE */
  .header {
    flex-direction: column;
  }
  .header-title {
    justify-content: center;
  }
  .header h1 {
    padding-left: 0;
    padding-top: 15px;
  }
  .nav {
    justify-content: center;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .nav h2 {
    font-family: "Roboto Condensed";
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    padding: 0 15px;
  }
  .nav h2 a {
    padding: 22px 21px 8px 21px;
  }
  .picture-section {
    padding-top: 20px;
    margin-left: 30px;
  }
  .picture-section img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
  }
  .picture-section h2 {
    font-size: 30px;
  }
  .picture-section h3 {
    font-size: 20px;
  }
  .picture-section h4 {
    font-size: 16px;
    padding: 0 5px;
  }
  .icons {
    font-size: 30px;
  }
  .about-me-h1 {
    width: 195px;
  }
  .about-me h1 {
    font-size: 40px;
  }
  .about-me p {
    font-size: 16px;
    line-height: 21px;
  }
  .contact-info {
    margin-top: 20px;
  }
  /* SKILLS */
  .education-section {
    padding-right: 20px;
  }
  .education-h1 {
    font-size: 40px;
  }
  .degree {
    font-size: 18px;
    flex-direction: column;
    text-align: center;
  }
  .degree h2 {
    padding: 0;
  }
  .degree .fa-graduation-cap {
    font-size: 34px;
    padding-bottom: 15px;
  }
  .location {
    font-size: 16px;
  }
  .skills .fab,
  .skills .fas {
    font-size: 40px;
  }
  .skills {
    width: 300px;
    font-size: 24px;
  }
  .skills p {
    font-size: 16px;
  }
  /* PROJECTS */
  .tech-header.first {
    font-size: 45px;
  }
  .tech-header {
    font-size: 45px;
  }
  .description-name {
    font-size: 30px;
  }
  .description {
    font-size: 24px;
  }
  .tools {
    font-size: 20px;
  }
  /* CONTACT */
  .contact-container {
    padding: 115px 55px;
  }
  .contact-box {
    padding: 50px;
    margin: 0 20px;
  }
  .contact-h1 {
    font-size: 40px;
  }
  .contact-p {
    font-size: 20px;
    text-align: center;
  }
  .button-div p {
    font-size: 20px;
    padding: 20px;
  }
}
@media screen and (max-width: 540px) {
  .nav h2 {
    padding: 0;
  }
  #home {
    display: flex;
    justify-content: center;
  }
  .home-container {
    flex-direction: column;
    width: 80%;
  }
  .picture-section {
    width: 100%;
    margin: 0;
  }
  .picture-section img {
    height: 150px;
    width: 150px;
  }
  .picture-section h2,
  .picture-section h3,
  .picture-section h4,
  .icons {
    margin-top: 15px;
  }
  .icons {
    margin-bottom: 15px;
  }
  .about-me {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-me-p {
    width: 100%;
  }
  .skills {
    width: 150px;
    text-align: center;
  }
  .contact-box {
    margin: 0;
  }
  .contact-p {
    line-height: 24px;
  }
  .button {
    padding: 10px 20px;
    width: 50%;
  }
  .skills .fab,
  .skills .fas {
    font-size: 30px;
    padding-bottom: 8px;
  }
  .skills {
    font-size: 20px;
  }
  .skills p {
    font-size: 14px;
    padding-top: 5px;
  }
  .topArrow {
    right: 15px;
    bottom: 0;
  }
  .topArrow .fas {
    font-size: 26px;
  }
}
@media screen and (max-width: 475px) {
  body {
    padding: 0;
  }
  .header h1 {
    font-size: 19px;
    letter-spacing: 0.2px;
    padding-bottom: 15px;
  }
  .header h1 span {
    font-size: 19px;
  }
  .nav h2 {
    font-size: 14px;
  }
  .nav h2 a {
    padding: 22px 15px 8px 15px;
  }
  .home-container {
    padding-top: 15px;
  }
  .picture-section img {
    height: 125px;
    width: 125px;
  }
  .picture-section h2 {
    font-size: 24px;
  }
  .picture-section h3 {
    font-size: 16px;
  }
  .picture-section h4 {
    font-size: 12px;
    line-height: 18px;
  }
  .picture-section h5 {
    font-size: 12px;
    margin-top: 5px;
  }
  .icons {
    font-size: 28px;
  }
  .about-me-h1 {
    width: 146px;
  }
  .about-me h1 {
    font-size: 30px;
  }
  .about-me p {
    font-size: 13px;
    line-height: 18px;
  }
  .education-h1 {
    font-size: 30px;
  }
  .education-section {
    margin-top: 20px;
    padding-right: 0;
  }
  .school {
    padding: 0 5px;
    justify-content: center;
  }
  .degree {
    font-size: 13px;
  }
  .degree .fa-graduation-cap {
    font-size: 22px;
    padding-bottom: 5px;
  }
  .location {
    font-size: 11.5px;
    line-height: 14px;
  }
  .skills-h1 {
    font-size: 30px;
  }
  .skills p {
    font-size: 13px;
  }
  .tech-header.first,
  .tech-header {
    font-size: 30px;
  }
  .tech-header-line {
    margin: 0 15px;
  }
  .websites-container {
    margin-top: 30px;
  }
  .description-name {
    font-size: 24px;
  }
  .image {
    width: 70%;
  }
  .description {
    font-size: 20px;
    line-height: 26px;
    width: 70%;
  }
  .tools {
    font-size: 16px;
    padding-bottom: 35px;
  }
  .contact-container {
    padding: 135px 45px;
  }
  .contact-box {
    padding: 40px;
  }
  .contact-h1 {
    font-size: 30px;
  }
  .contact-p {
    font-size: 16px;
    line-height: 20px;
  }
  .button-div {
    padding-top: 30px;
  }
  .button-div p {
    width: 100%;
  }
}
@media screen and (max-width: 340px) {
  .header h1 {
    font-size: 16px;
  }
  .header h1 span {
    font-size: 16px;
  }
  .nav h2 {
    font-size: 12px;
  }
  .nav h2 a {
    padding: 22px 12px 8px 12px;
  }
  .picture-section img {
    height: 100px;
    width: 100px;
  }
  .picture-section h2 {
    font-size: 22px;
  }
  .picture-section h3 {
    font-size: 14px;
    margin-top: 10px;
  }
  .picture-section h4 {
    font-size: 11px;
    line-height: 18px;
    margin-top: 10px;
  }
  .picture-section h5 {
    font-size: 11px;
    margin-top: 5px;
  }
  .icons {
    font-size: 20px;
    margin-top: 10px;
  }
  .about-me-h1 {
    width: 117px;
  }
  .about-me h1 {
    font-size: 24px;
  }
  .about-me p {
    font-size: 12px;
    line-height: 18px;
  }
  .skills p {
    font-size: 12px;
  }
  .tech-header.first,
  .tech-header {
    font-size: 26px;
  }
  .description-name {
    font-size: 20px;
  }
  .description {
    font-size: 16px;
    line-height: 22px;
  }
  .tools {
    font-size: 13px;
  }
  .contact-h1 {
    font-size: 26px;
  }
  .contact-p {
    font-size: 14px;
  }
  .button {
    font-size: 16px;
    width: 80%;
  }
  .topArrow {
    right: 10px;
    bottom: 0;
  }
  .topArrow .fas {
    font-size: 26px;
  }
}
