* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Source Serif Pro", serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  scroll-padding-top: 3.5rem;
  letter-spacing: 2px;
}

body {
  background: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
  background-color: black;
  color: white;
}

.section-intro {
  font-size: 70px;
  text-align: center;
  padding-top: 30px;
  color: deepskyblue;
}

/* Smaller Devices */
@media (max-width: 1024px) {
  .section-intro {
    font-size: 59px;
  }
}
@media (max-width: 768px) {
  .section-intro {
    font-size: 51px;
  }
}
@media (max-width: 480px) {
  .section-intro {
    font-size: 46px;
  }
}
/* ---------- NAVBAR ---------- */
/* DEFAULT */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  text-align: left;
  font-size: 45px;
  font-weight: 900;
  color: deepskyblue;
}

/* Menu Display */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  list-style: none;
}

/* Links */
.nav-link {
  color: white;
  text-decoration: none;
  transition: 0.25s;
}

.nav-link:hover {
  color: deepskyblue;
}

.nav-link:after {
  content: "";
  width: 0%;
  height: 2px;
  background: deepskyblue;
  display: block;
  margin: auto;
  transition: 0.25s;
}

.nav-link:hover::after {
  width: 100%;
}

/* JavaScript Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

/* Scroll Down Color Change */
header.sticky {
  transition: 2s;
  background: #121212;
}

/* Smaller Devices */
@media (max-width: 1024px) {
  header {
    background-color: #121212;
    padding: 18px 7%;
  }
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .navbar {
    position: fixed;
    right: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    background-color: #121212;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 1;
  }
  .navbar li {
    margin: 16px 0;
  }
  .navbar.active {
    right: 0;
  }
  .logo {
    font-size: 43px;
  }
}
@media (max-width: 768px) {
  header {
    background-color: #121212;
    padding: 16px 4%;
  }
  .logo {
    font-size: 40px;
  }
  .navbar {
    top: 80px;
  }
}
@media (max-width: 480px) {
  header {
    background-color: #121212;
    padding: 12px 2%;
  }
  .logo {
    font-size: 35px;
  }
  .navbar {
    top: 65px;
  }
}
/* ---------- HOME ---------- */
/* Background Image */
.home {
  padding: 120px 10%;
  height: 100vh;
  width: 100%;
  position: relative;
  background: url(../images/home-background.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Home Styling */
.home-text h1 {
  font-size: 90px;
  color: deepskyblue;
  letter-spacing: 5px;
}

.home-text h2 {
  font-size: 20px;
}

.home-text h3 {
  font-size: 30px;
  position: relative;
  top: 200px;
}

.home-text h4 {
  color: #a6a6a6;
  font-size: 22px;
  font-weight: bolder;
}

/* Socials Links */
.socials {
  display: flex;
  position: relative;
  bottom: -180px;
}

.socials li {
  margin-right: 20px;
  cursor: pointer;
}

.socials a {
  text-decoration: none;
  color: white;
}

.socials a i {
  font-size: 50px;
  transition: color 0.5s ease;
}

.socials a:hover i {
  color: deepskyblue;
}

/* Smaller Screens */
@media (max-width: 1024px) {
  .home {
    padding: 110px 7%;
    height: 80vh;
  }
  .home-text h1 {
    font-size: 84px;
  }
  .home-text h2 {
    font-size: 18px;
  }
  .home-text h3 {
    font-size: 27px;
    position: relative;
    top: 100px;
  }
  .home-text h4 {
    font-size: 19px;
  }
  .socials a i {
    font-size: 44px;
    position: relative;
    top: -90px;
  }
}
@media (max-width: 768px) {
  .home {
    padding: 100px 4%;
    height: 65vh;
  }
  .home-text h1 {
    font-size: 77px;
  }
  .home-text h2 {
    font-size: 16px;
  }
  .home-text h3 {
    font-size: 24px;
    position: relative;
    top: 100px;
  }
  .home-text h4 {
    font-size: 17px;
  }
  .socials a i {
    font-size: 40px;
    position: relative;
    top: -90px;
  }
}
@media (max-width: 480px) {
  .home {
    padding: 80px 2%;
    height: 50vh;
  }
  .home-text h1 {
    position: relative;
    bottom: -20px;
    font-size: 70px;
  }
  .home-text h2 {
    position: relative;
    bottom: -30px;
    font-size: 14px;
  }
  .home-text h3 {
    font-size: 21px;
    position: relative;
    top: 55px;
  }
  .home-text h4 {
    position: relative;
    bottom: -10px;
    font-size: 15px;
  }
  .socials a i {
    font-size: 36px;
    position: relative;
    top: -130px;
  }
}
/* ---------- ABOUT ---------- */
/* Text Styling */
.about {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(2, 2fr);
  align-items: center;
  grid-gap: 2rem;
  padding: 40px 10%;
  padding-bottom: 0px;
}

.about img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 10px;
}

.about-text h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.about-text p {
  color: #a6a6a6;
  line-height: 28px;
  font-size: 17px;
}

/* Smaller Devices */
@media (max-width: 1024px) {
  .about {
    padding: 37px 7%;
    padding-bottom: 0px;
    grid-template-columns: 1fr;
  }
  .about-text h1 {
    font-size: 39px;
  }
  .about-text p {
    font-size: 16px;
  }
  .about-image {
    text-align: center;
    margin-bottom: 30px;
  }
  .about-image img {
    max-width: 100%;
    width: 700px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 34px 4%;
  }
  .about-text h1 {
    font-size: 34px;
  }
  .about-text p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 31px 2%;
  }
  .about-text h1 {
    font-size: 31px;
  }
  .about-text p {
    font-size: 13px;
  }
}
/* ---------- WORK ---------- */
/* Layout */
.work {
  padding: 40px 10%;
}

.work h1 {
  text-align: center;
  font-size: 47px;
}

.work h3 {
  color: #a6a6a6;
  text-align: center;
  font-size: 27px;
  margin-top: 20px;
}

/* Skills */
.pro-langs {
  padding: 5px;
}

.pro-langs a {
  font-size: 42px;
}

.tool-frames {
  padding: 5px;
}

.tool-frames a {
  font-size: 42px;
}

/* Projects */
.project-title h1 {
  font-size: 47px;
  text-align: center;
  padding: 10px;
}

.project-title h2 {
  font-size: 27px;
  text-align: center;
  padding-bottom: 15px;
  color: #a6a6a6;
}

.project-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, auto));
  grid-gap: 20px;
  align-items: center;
  margin-top: 15px;
}

.project-row {
  background-color: #212121;
  padding: 55px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s;
}

.project-row i {
  color: deepskyblue;
  margin-bottom: 20px;
  font-size: 47px;
}

.project-row h2 {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 15px;
}

.project-row p {
  color: #a6a6a6;
  font-size: 18px;
}

.project-row:hover {
  transform: translateY(-8px);
}

/* Smaller Devices */
@media (max-width: 1024px) {
  .work {
    padding: 37px 7%;
  }
  .work h1 {
    font-size: 39px;
  }
  .work h3 {
    font-size: 19px;
  }
  .work a {
    font-size: 37px;
  }
  .project-title h1 {
    font-size: 39px;
  }
  .project-title h2 {
    font-size: 23px;
  }
  .project-row {
    padding: 48px 26px;
  }
  .project-row i {
    font-size: 40px;
  }
  .project-row h2 {
    font-size: 21px;
  }
  .project-row p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .work {
    padding: 34px 4%;
  }
  .work h1 {
    font-size: 36px;
  }
  .work h3 {
    font-size: 17px;
  }
  .work a {
    font-size: 36px;
  }
  .project-title h1 {
    font-size: 37px;
  }
  .project-title h2 {
    font-size: 21px;
  }
  .project-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  }
  .project-row {
    padding: 44px 23px;
  }
  .project-row i {
    font-size: 36px;
  }
  .project-row h2 {
    font-size: 19px;
  }
  .project-row p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .work {
    padding: 28px 2%;
  }
  .work h1 {
    font-size: 34px;
  }
  .work h3 {
    font-size: 13px;
  }
  .work a {
    font-size: 33px;
  }
  .project-title h1 {
    font-size: 34px;
  }
  .project-title h2 {
    font-size: 18px;
  }
  .project-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  }
  .project-row {
    padding: 41px 20px;
  }
  .project-row i {
    font-size: 33px;
  }
  .project-row h2 {
    font-size: 17px;
  }
  .project-row p {
    font-size: 12px;
  }
}
/* ---------- CONTACT ---------- */
/* Layout */
.contact {
  padding: 20px 10%;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  align-items: center;
  grid-gap: 48px;
}

/* Contact Details */
.contact-details img {
  -webkit-clip-path: circle();
          clip-path: circle();
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
}

.contact-details h1 {
  text-align: center;
  font-size: 70px;
  position: relative;
  top: -70px;
  color: deepskyblue;
}

.contact-details h4 {
  text-align: center;
  font-size: 30px;
  position: relative;
  top: -70px;
}

.contact-details h2 {
  text-align: center;
  font-size: 30px;
  position: relative;
}

.contact-details span {
  color: deepskyblue;
}

.contact-map {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-self: center;
}

/* Contact Form */
.contact-form {
  background: #212121;
  display: flex;
  flex-direction: column;
  padding: 2vw 4vw;
  height: auto;
  width: 100%;
  border-radius: 10px;
}

.contact-form h1 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0px;
}

.contact-form h4 {
  text-align: center;
  font-size: 20px;
  padding: 10px 0px;
  margin-bottom: 30px;
  color: #a6a6a6;
}

.contact-form form {
  position: relative;
}

.contact-form form input, form textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  outline: none;
  background: #323232;
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
}

.contact-form textarea {
  resize: none;
  height: 200px;
}

form button {
  display: flex;
  justify-content: center;
  align-self: center;
  padding: 15px;
  background: #808080;
  color: white;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto;
  border-radius: 30px;
}

form button:hover {
  background-color: deepskyblue;
  transition: 0.5s;
  transform: translateY(-8px);
}

/* Smaller Devices */
@media (max-width: 1024px) {
  .contact {
    grid-template-columns: 1fr;
    padding: 24px 7%;
  }
  .contact-details img {
    text-align: center;
    margin-bottom: 25px;
  }
  .contact-form {
    order: 2;
    align-items: center;
  }
  .contact-details img {
    width: 225px;
  }
  .contact-details h1 {
    font-size: 64px;
  }
  .contact-details h4 {
    font-size: 25px;
  }
  .contact-details h2 {
    font-size: 24px;
  }
  .contact-form h1 {
    font-size: 34px;
  }
  .contact-form h4 {
    font-size: 17px;
  }
  .contact-form form input, form textarea {
    font-size: 13px;
  }
  form button {
    font-size: 14px;
    width: 130px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 20px 4%;
  }
  .contact-form {
    order: 2;
    align-items: center;
  }
  .contact-details img {
    width: 200px;
  }
  .contact-details h1 {
    font-size: 59px;
  }
  .contact-details h4 {
    font-size: 23px;
  }
  .contact-details h2 {
    font-size: 21px;
  }
  .contact-form h1 {
    font-size: 32px;
  }
  .contact-form h4 {
    font-size: 15px;
  }
  .contact-form form input, form textarea {
    font-size: 12px;
  }
  form button {
    font-size: 13px;
    width: 115px;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 17px 2%;
  }
  .contact-details img {
    width: 175px;
  }
  .contact-details h1 {
    font-size: 56px;
  }
  .contact-details h4 {
    font-size: 21px;
  }
  .contact-details h2 {
    font-size: 19px;
  }
  .contact-form h1 {
    font-size: 29px;
  }
  .contact-form h4 {
    font-size: 12px;
  }
  .contact-form form input, form textarea {
    font-size: 10px;
  }
  form button {
    font-size: 11px;
    width: 100px;
  }
}
/* ---------- FOOTER ---------- */
/* DEFAULT */
footer {
  margin-top: auto;
  padding: 10px;
  background: #212121;
}

footer h2 {
  text-align: center;
  color: white;
  font-size: 23px;
  padding: 15px 0px;
}

footer h3 {
  text-align: center;
  color: white;
  font-size: 18px;
}

/* Smaller Devices */
@media (max-width: 1024px) {
  footer h2 {
    padding: 13px 0px;
    font-size: 21px;
  }
  footer h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  footer h2 {
    padding: 11px 0px;
    font-size: 19px;
  }
  footer h3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  footer h2 {
    padding: 9px 0px;
    font-size: 17px;
  }
  footer h3 {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */