@charset "utf-8";
/* Global Styles */

body {
  margin: 0 auto;
  width: 92%;
  max-width: 960px;
  padding-left: 2.275%;
  padding-right: 2.275%;
  font-family: 'Montserrat', sans-serif;
}
/* Header */

header .profileLogo .logoPlaceholder {
  background-color: rgba(208,207,207,1.00);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
header .logoPlaceholder span {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,1.00);
  font-size: 30px;
  font-weight: 700;
}

header .profilePhoto img {
  width: 100%;
  border-radius: 50%;
}
header .profileHeader h1 {
  color: rgba(146,146,146,1.00);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
header .profileHeader h3 {
  color: rgba(146,146,146,1.00);
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
}
hr {
  background-color: rgba(208,207,207,1.00);
  height: 1px;
  border: none;
}
header .profileHeader p {
  color: rgba(146,146,146,1.00);
  font-size: 14px;
  line-height: 1.8;
  margin: 10px 0;
}
header .socialNetworkNavBar {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
header .socialNetworkNavBar .socialNetworkNav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}
header .socialNetworkNavBar .socialNetworkNav img:hover {
  opacity: 0.5;
}
/* Main Content sections */
.mainContent {
  padding: 20px 0;
}
.mainContent .section1 {
  margin-bottom: 40px;
  text-align: center;
}
.section1 .sectionTitle {
  color: rgba(146,146,146,1.00);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.section1 .sectionTitleRule, .section2 .sectionTitleRule {
  background-color: rgba(208,207,207,1.00);
  height: 1px;
  border: none;
  margin: 10px 0;
}
.section1 .sectionTitleRule2, .section2 .sectionTitleRule2 {
  display: none;
}
.mainContent .section1 .section1Content {
  color: rgba(146,146,146,1.00);
  font-size: 14px;
  font-weight: 400;
}
.mainContent .section1 .section1Content span {
  color: rgba(146,146,146,1.00);
  font-weight: 700;
}
/* External Resources */
.mainContent .externalResourcesNav {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mainContent .externalResourcesNav .externalResources {
  background-color: rgba(208,207,207,1.00);
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mainContent .externalResourcesNav .externalResources:hover {
  background-color: rgba(153,153,153,1.00);
}
.externalResourcesNav .externalResources a {
  color: rgba(255,255,255,1.00);
  font-size: 14px;
  text-decoration: none;
}
/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
}
footer .footerDisclaimer, footer .footerNote {
  color: rgba(104,103,103,1.00);
  font-size: 14px;
  margin: 5px 0;
}
footer .footerDisclaimer span, footer .footerNote span {
  color: rgba(181,178,178,1.00);
  font-weight: 400;
}

/* Media query for Mobile devices */
@media only screen and (max-width: 480px) {
  header .profileLogo .logoPlaceholder {
    margin-bottom: 10px;
  }
  header .profilePhoto {
    width: 150px;
    height: 150px;
  }
  header .socialNetworkNavBar .socialNetworkNav {
    width: 40px;
    height: 40px;
  }
  .mainContent .section1 .section1Content {
    font-size: 12px;
  }
  .mainContent .externalResourcesNav .externalResources {
    padding: 8px 16px;
  }
}

/* Media Query for Tablets */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  header .profilePhoto {
    float: left;
    margin-right: 20px;
  }
  header .profileHeader {
    text-align: left;
    margin-top: 20px;
  }
  header .socialNetworkNavBar {
    justify-content: flex-start;
  }
  .mainContent .section1 .section1Content {
    margin: 0 20%;
    text-align: left;
  }
  .mainContent .externalResourcesNav {
    justify-content: flex-start;
    margin-left: 20%;
  }
}

/* Desktops and laptops */
@media only screen and (min-width: 1025px) {
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .profileLogo .logoPlaceholder {
    margin-bottom: 0;
  }
  header .profilePhoto {
    margin-right: 40px;
  }
  header .profileHeader {
    text-align: left;
  }
  header .socialNetworkNavBar {
    justify-content: flex-start;
  }
  .mainContent .section1 .section1Content {
    margin-left: 26%;
    text-align: left;
  }
  .mainContent .externalResourcesNav {
    justify-content: flex-start;
    margin-left: 26%;
  }
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
