body {
  color: white;
  background-color: rgb(39, 37, 37);
  background-size: cover; /* fills screen */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;
  margin: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.g-loading-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(34, 100, 145, 0.9);
  z-index: 9999;
}

.fa-github {
  font-size: 50px;
  color: black;
}

.fa-github:hover {
  color: gray;
}

#linkedin {
  font-family: Arial, sans-serif;
  text-decoration: none;
  font-size: 60px;
  font-weight: 700;
  color: black;
}

#linkedin:hover {
  color: grey;
}

nav {
  display: flex;
  justify-content: end;
  gap: 40px;
  padding-right: 100px;
  padding-top: 10px;
  font-size: 20px;
  color: black;
  background-color: rgb(127, 219, 255);
}

nav a:hover {
  transform: scale(1.2);
  transition: 0.2s ease;
  text-decoration: underline;
}

nav a {
  color: black;
  text-decoration: none;
}

#s-header {
  background-color: rgb(127, 219, 255);
  color: rgba(255, 255, 255, 0.7); /* 50% transparent text */
  font-size: 50px;
  font-weight: bold;
  padding-left: 100px;
  padding-bottom: 10px;
}

#s-subheading {
  background-color: rgb(127, 219, 255);
  font-size: 20px;
  padding-left: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgba(0, 0, 0, 0.7); /* 50% transparent text */
}

div img {
  width: 100%;
  height: 100%;
}

#imagesforport {
  padding-top: 50px;
  column-gap: 200px;
  row-gap: 150px;
  justify-content: center;
  display: grid;
  grid-template-columns: 500px 500px;
  grid-template-rows: 500px 500px;
  grid-template-areas: "one" "two" "three" "four" "five" "six";
}

#imagesforport section {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#imagesforport section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section p {
  display: flex;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

#email {
  color: white;
}

#contacts {
  padding-left: 300px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

#info {
  display: flex;
  justify-content: end;
  width: 1000px;
}

#social {
  display: flex;
  align-items: center;
  align-items: right;
}

footer {
  background-color: rgb(82, 82, 82);
  padding-bottom: 40px;
}

#contacts a {
  text-decoration: none;
}

#contacts a:hover {
  text-decoration: underline;
}

#note {
  padding-top: 20px;
  text-align: center;
}

#me {
  padding-left: 290px;
  display: flex;
  align-items: center; /* vertically aligns text with image */
  gap: 40px; /* space between image and text */
  max-width: 1000px;
  margin: 10px;
}

#me img {
  width: 65%;
  height: 65%;
}

/*----------------------------------------*/
.resume-page {
  background: #f4f4f4;
  padding: 40px 20px;
}

.resume-page a {
  color: black;
  text-decoration: none;
}

.resume-page a:hover {
  color: black;
  text-decoration: underline;
}

.resume-actions {
  color: white;
  text-align: center;
  margin-bottom: 25px;
}

.download-btn {
  display: inline-block;
  background: #539b76;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.download-btn:hover {
  background: #25583e;
}

.resume-paper {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  padding: 50px 60px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.resume-header {
  text-decoration: none;
  text-align: center;
  border-bottom: 2px solid #222;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.resume-header h1 {
  margin: 0;
  font-size: 32px;
  text-transform: uppercase;
}

.resume-header p {
  margin: 5px 0;
}

.resume-header h2 {
  font-size: 18px;
  margin-top: 12px;
}

.resume-paper h3 {
  text-transform: uppercase;
  border-bottom: 1px solid #333;
  margin-top: 25px;
  padding-bottom: 5px;
  font-size: 18px;
}

.resume-paper h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.resume-item {
  margin-bottom: 18px;
}

.resume-paper ul {
  margin-top: 6px;
  padding-left: 25px;
}

.resume-paper li {
  margin-bottom: 5px;
}

.summary {
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .resume-paper {
    padding: 30px 25px;
  }
  .resume-header h1 {
    font-size: 26px;
  }
}
#p-page {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#p-page.loaded {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  #imagesforport {
    padding-top: 50px;
    column-gap: 50px;
    row-gap: 150px;
    justify-content: center;
    display: grid;
    grid-template-columns: 350px 350px;
    grid-template-rows: 350px 350px;
    grid-template-areas: "one" "two" "three" "four" "five" "six";
  }
  #s-header {
    font-size: 25px;
  }
  section p {
    font-size: 16px;
  }
  #me {
    padding-left: 100px;
    display: flex;
    align-items: center; /* vertically aligns text with image */
    gap: 40px; /* space between image and text */
    max-width: 1000px;
    margin: 10px;
  }
  #contacts {
    padding-left: 110px;
    padding-top: 15px;
    padding-bottom: 25px;
    display: flex;
  }
  #info {
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #imagesforport {
    padding-top: 50px;
    column-gap: 50px;
    row-gap: 150px;
    justify-content: center;
    display: grid;
    grid-template-columns: 350px;
    grid-template-rows: 350px;
    grid-template-areas: "one" "two" "three";
  }
}
@media screen and (max-width: 500px) {
  #imagesforport {
    padding-top: 50px;
    column-gap: 50px;
    row-gap: 150px;
    justify-content: center;
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 300px;
    grid-template-areas: "one" "two" "three";
  }
  #s-header {
    padding-left: 5px;
  }
  #s-subheading {
    padding-left: 5px;
  }
  nav {
    display: flex;
    justify-content: end;
    gap: 20px;
    padding-right: 50px;
    padding-top: 10px;
    font-size: 16px;
    color: black;
    background-color: rgb(127, 219, 255);
  }
  #me {
    padding-left: 5px;
    display: flex;
    align-items: center; /* vertically aligns text with image */
    gap: 40px; /* space between image and text */
    max-width: 1000px;
    margin: 10px;
  }
  #contacts {
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }
}

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