/*--------- RESET CSS ---------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /* font: inherit; */
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--------- VARIABLES ---------*/
/*--------- GENERAL ---------*/
html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: white;
  font-family: "Montserrat", sans-serif;
}

/*--------- HEADER ---------*/
header {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
header .header-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header #main-title {
  font-size: 120px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
header #sub-title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}
header #para-title {
  font-size: 25px;
  font-weight: 100;
}
header .header-logo {
  position: fixed;
  font-weight: bold;
  top: 30px;
  left: 30px;
}
header .header-logo a {
  color: white;
  text-decoration: none;
}
header .top-menu-container {
  display: flex;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 30px;
}
header .top-menu-container .menu-item a {
  padding: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: 300;
}
header .top-menu-container .menu-item #resume-btn {
  border: 1px solid rgb(63, 63, 63);
  padding: 7px 10px;
  border-radius: 15px;
}
header .header-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 300;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
header .header-copyright img {
  width: 26px;
}

/* Back to top */
.back-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 69px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(63, 63, 63);
  filter: 0;
  border-radius: 60px;
  z-index: 3;
  transition: all 0.3s ease;
  text-decoration: none;
}
.back-top:hover {
  border: 1px solid rgb(255, 255, 255);
  height: 60px;
}
.back-top .back-top-content {
  color: white;
  font-weight: 500;
}

.hidden {
  opacity: 0;
}

/*--------- SECTION ---------*/
.featured-projects {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.featured-projects .scroll {
  font-size: 120px;
  font-weight: 600;
  position: absolute;
  filter: blur(10px);
  transition: filter 0.8s ease-in-out;
}
.featured-projects .scroll .project-link {
  color: white;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: border-bottom 0.2s ease-in-out;
}
.featured-projects .scroll .project-description {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  text-transform: none;
}
.featured-projects .work-links a {
  font-size: 25px;
  text-decoration: none;
  font-weight: 500;
  color: white;
  border-bottom: 1px solid white;
  padding: 20px;
  margin: 0 10px;
}
.featured-projects .scroll-appear {
  filter: blur(0px);
}
.featured-projects .image-container {
  opacity: 1;
  z-index: -1;
  transition: opacity 0.5s ease-out;
}
.featured-projects .image-container img {
  width: auto;
  opacity: 0.15;
}
.featured-projects .image-dark {
  opacity: 0.1;
}

/*--------- ABOUT ME ---------*/
.other-section {
  margin-top: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.other-section .scroll-other {
  filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: filter 0.7s ease-out;
}
.other-section .scroll-other p {
  width: 50vw;
  text-align: center;
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
}
.other-section .scroll-other .more-about-btn {
  font-size: 20px;
  font-weight: 300;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 40px;
  padding: 30px;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.3s ease;
}
.other-section .scroll-other .more-about-btn:hover {
  border: 1px solid white;
}
.other-section .scroll-appear-other {
  filter: blur(0px);
}
.other-section .scroll-about-skills {
  margin-top: 50px;
}
.other-section .scroll-about-skills p {
  margin-bottom: 30px;
}
.other-section .scroll-about-skills .skill-item {
  width: auto;
  font-size: 20px;
  font-weight: 300;
  color: white;
  border: 1px solid #434343;
  border-radius: 30px;
  padding: 20px;
}
.other-section .scroll-about-skills .skill-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

/*--------- FOOTER ---------*/
.contact-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-section .scroll-other {
  margin-bottom: 50px;
}
.contact-section .scroll-other p {
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-section .scroll-other p:last-child {
  margin-bottom: 0;
}
.contact-section .scroll-other a {
  color: white;
  text-decoration: none;
  padding-bottom: 5px;
  font-size: 30px;
}
.contact-section .scroll-other:last-child {
  margin-bottom: 0;
}
.contact-section .scroll-other #email-address {
  border-bottom: 2px solid rgb(255, 255, 255);
}
.contact-section .scroll-other .contact-social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact-section .scroll-other .contact-social-container .social-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section .scroll-other .contact-social-container img {
  width: 25px;
}
.contact-section .scroll-other .contact-social-container a {
  border: 0;
}
.contact-section .scroll-other .contact-social-container h2 {
  font-weight: 300;
  font-size: 20px;
}
.contact-section .scroll-other-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/*--------- MEDIA QUERIES ---------*/
@media (max-width: 1100px) {
  header #main-title {
    padding: 0 40px;
    font-size: 95px;
    margin-bottom: 15px;
  }
  header #sub-title {
    font-size: 30px;
  }
  .featured-projects {
    height: 70vh;
    justify-content: center;
    align-items: center;
  }
  .featured-projects .scroll {
    top: 80px;
    font-size: 70px;
    text-align: center;
  }
  .featured-projects .scroll .project-link {
    color: white;
    text-decoration: none;
  }
  .featured-projects .work-links a {
    font-size: 20px;
    border: 1px solid white;
    border-radius: 25px;
    padding: 20px;
  }
  .featured-projects .image-container img {
    width: 500px;
  }
  #project2 .scroll {
    top: -100px;
  }
  .other-section .scroll-other {
    filter: blur(10px);
  }
  .other-section .scroll-other #about-para {
    margin-bottom: 100px;
    line-height: 45px;
  }
  .other-section .scroll-appear-other {
    filter: blur(0px);
  }
  .other-section .scroll-about-skills {
    margin-top: 50px;
  }
  .other-section .scroll-about-skills p {
    margin-bottom: 30px;
  }
  .other-section .scroll-about-skills .skill-item {
    font-size: 25px;
    padding: 15px;
  }
  .other-section .scroll-about-skills .skill-container-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-section .scroll-other .contact-social-container h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  header {
    margin-bottom: 80px;
  }
  header #main-title {
    padding: 0 40px;
    font-size: 35px;
    margin-bottom: 15px;
  }
  header #sub-title {
    font-size: 15px;
  }
  header .header-logo {
    width: 10px;
    font-size: 13px;
  }
  header .top-menu-container {
    display: flex;
    align-items: center;
    position: fixed;
    top: 30px;
    right: 30px;
  }
  header .top-menu-container .menu-item a {
    padding: 0 5px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-size: 12px;
  }
  header .top-menu-container .menu-item #resume-btn {
    border: 1px solid rgb(63, 63, 63);
    padding: 7px 10px;
    border-radius: 15px;
  }
  header .header-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
  }
  .featured-projects {
    height: auto;
    padding: 0 0 300px 0;
    justify-content: center;
    align-items: center;
  }
  .featured-projects .scroll {
    top: -50px;
    font-size: 50px;
    text-align: center;
  }
  .featured-projects .scroll .project-link {
    color: white;
    text-decoration: none;
  }
  .featured-projects .work-links a {
    font-size: 12px;
    border: 1px solid white;
    border-radius: 25px;
    padding: 20px;
  }
  .featured-projects .image-container img {
    width: 350px;
  }
  #project2 .scroll {
    top: -270px;
  }
  .other-section {
    height: auto;
  }
  .other-section .scroll-other {
    filter: blur(10px);
  }
  .other-section .scroll-other #about-para {
    margin: 0 0 100px 0;
    font-size: 20px;
    line-height: 35px;
  }
  .other-section .scroll-appear-other {
    filter: blur(0px);
  }
  .other-section .scroll-about-skills {
    margin-top: 50px;
  }
  .other-section .scroll-about-skills p {
    margin-bottom: 30px;
  }
  .other-section .scroll-about-skills .skill-item {
    font-size: 15px;
    border-radius: 20px;
    padding: 10px 12px;
  }
  .contact-section {
    height: 100vh;
  }
  .contact-section .scroll-other .contact-social-container h2 {
    font-size: 15px;
  }
  .contact-section .scroll-other a {
    color: white;
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 20px;
  }
  .contact-section .scroll-other .contact-social-container {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */