*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Mono", monospace;
  color: #1B1B1B;
  background: #00416A;
}
body.no-scroll {
  overflow: hidden;
}

.site-container {
  padding: 0 20px;
  margin: 0 auto;
}

header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background: #00416A;
}
header .site-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 812px) {
  header .site-container {
    justify-content: space-between;
  }
}
header #logo {
  width: 175px;
  padding: 20px 0;
}
header #nav-btn {
  width: 56px;
  height: 56px;
  background: #87CEFA;
  border: none;
  border-radius: 50%;
  margin-left: auto;
  padding: 1rem 1.2rem;
  color: #333;
  font-size: 1.25em;
  cursor: pointer;
}
header #nav-btn:after {
  content: "\f0c9";
  font-family: FontAwesome;
}
header #nav-btn.open:after {
  content: "\f00d";
}
header #nav-btn span.sr-only {
  background-color: #F5F5F5;
}
@media (min-width: 812px) {
  header .site-container {
    margin: 0 15%;
  }
  header #nav-btn {
    display: none;
  }
}

#top-navbar {
  display: none;
}
#top-navbar.open {
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #87CEFA;
  margin: 0 -20px;
}
@media (min-width: 812px) {
  #top-navbar {
    display: block;
    width: auto;
    margin: 0;
  }
}
#top-navbar ul {
  padding: 0 20px;
  list-style: none;
}
@media (min-width: 812px) {
  #top-navbar ul {
    display: flex;
    padding: 0;
  }
  #top-navbar ul li {
    padding-left: 16px;
  }
}
#top-navbar ul a {
  display: inline-block;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
  font-size: 1.25em;
  text-underline-offset: 5px;
}
#top-navbar ul a:is(:hover, :focus) {
  -webkit-text-decoration: underline solid #b85852 4px;
          text-decoration: underline solid #b85852 4px;
}
@media (min-width: 812px) {
  #top-navbar ul a {
    color: #F5F5F5;
    text-underline-offset: 15px;
  }
}

main h1 {
  font-size: 3rem;
}
main h2 {
  font-size: 1.875rem;
}
main h3 {
  font-size: 1.5rem;
}
main h4 {
  font-size: 1.25rem;
}
main h5 {
  font-size: 1.125rem;
}
main h6 {
  font-size: 1rem;
}

.welcome {
  display: flex;
  padding-top: 8.125em;
  height: 100dvh;
}
.welcome .welcome-img {
  width: 350px;
}
@media (min-width: 624px) {
  .welcome .welcome-img {
    width: 400px;
  }
}
@media (min-width: 812px) {
  .welcome .welcome-img {
    width: 500px;
  }
}
@media (min-width: 992px) {
  .welcome .welcome-img {
    width: 700px;
  }
}
.welcome .welcome-img img {
  width: 100%;
  height: 100%;
}
.welcome h1.sr-only {
  color: #F5F5F5;
}

.about {
  background-color: #b85852;
  scroll-margin-top: 4rem;
}
.about h2 {
  text-align: center;
  padding: 20px;
  color: #1B1B1B;
}
.about .profile-card {
  margin: auto;
  padding: 20px 0 40px;
}
@media (orientation: landscape) and (max-width: 812px) {
  .about .profile-card {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
.about .profile-card .profile-img img {
  display: block;
  margin: 0 auto;
  height: 200px;
  width: 200px;
  border-radius: 50%;
}
.about .profile-card .info {
  text-align: center;
  color: #1B1B1B;
}
@media (orientation: landscape) and (max-width: 812px) {
  .about .profile-card .info {
    text-align: left;
  }
}
.about .profile-card .info p {
  padding: 1.25em 0;
}
.about .profile-card .info a {
  text-decoration: none;
  color: #1B1B1B;
}
.about .profile-card .info .fa-envelope,
.about .profile-card .info .fa-location-dot {
  margin-right: 5px;
}
.about .profile-card .info .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
}
@media (orientation: landscape) and (max-width: 812px) {
  .about .profile-card .info .social-links {
    justify-content: flex-start;
  }
}
.about .profile-card .info .social-links li.git-dropdown-container {
  position: relative;
}
.about .profile-card .info .social-links li a {
  font-size: 1.5rem;
  color: #1B1B1B;
  text-decoration: none;
}
.about .profile-card .info .social-links li #git-options {
  font-size: 1.5rem;
  color: #1B1B1B;
  background: none;
  border: none;
  cursor: pointer;
}
.about .profile-card .info .social-links li #git-dropdown {
  display: none;
  position: absolute;
  top: 42px;
  padding: 15px;
  border-radius: 8px;
  background: #F5F5F5;
  white-space: nowrap;
  text-align: left;
  z-index: 2;
  list-style: none;
}
.about .profile-card .info .social-links li #git-dropdown:before {
  content: "\f0d8";
  font-family: FontAwesome;
  position: absolute;
  top: -10px;
  left: 10px;
  color: #F5F5F5;
}
.about .profile-card .info .social-links li #git-dropdown.opened {
  display: block;
}
.about .profile-card .info .social-links li #git-dropdown li a {
  display: inline-block;
  font-size: 1rem;
  padding-bottom: 10px;
}
.about .profile-card .info .social-links li #git-dropdown li a:is(:hover, :focus) {
  text-decoration: underline;
}

.projects {
  color: #F5F5F5;
  scroll-margin-top: 4rem;
  overflow: hidden;
}
.projects h2 {
  text-align: center;
  padding: 20px;
}
.projects .project-group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 812px) {
  .projects .project-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.projects .project-container {
  position: relative;
  perspective: 1000px;
}
@media (min-width: 812px) {
  .projects .project-container {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .projects .project-container {
    width: 33.33%;
  }
}
.projects .project-container .project {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
@media (min-width: 425px) {
  .projects .project-container .project {
    max-width: 350px;
  }
}
.projects .project-container .project .project-overview,
.projects .project-container .project .project-info {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 8px;
  backface-visibility: hidden;
}
.projects .project-container .project .project-overview img {
  width: 100%;
  height: 200px;
  border-radius: 6px 6px 0 0;
}
.projects .project-container .project .project-overview .project-about {
  color: #333;
  background: #F5F5F5;
  padding: 20px;
}
.projects .project-container .project .project-overview .project-about h3 {
  padding: 20px 0;
}
.projects .project-container .project .project-overview .project-about .project-more {
  display: flex;
}
.projects .project-container .project .project-overview .project-about .project-more .more-info,
.projects .project-container .project .project-overview .project-about .project-more a {
  display: block;
  font-size: 0.75rem;
  padding: 8px 16px;
  margin-right: 10px;
  background-color: #00416A;
  border: none;
  border-radius: 6px;
  color: #F5F5F5;
  text-decoration: none;
  cursor: pointer;
}
.projects .project-container .project .project-overview .project-about .project-more .more-info:is(:hover, :focus),
.projects .project-container .project .project-overview .project-about .project-more a:is(:hover, :focus) {
  background-color: #87CEFA;
  color: #333;
}
.projects .project-container .project .project-info {
  padding: 20px;
  transform: rotateY(180deg);
}
.projects .project-container .project .project-info .close-about {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}
.projects .project-container .project .project-info .close-about::before {
  content: "\f00d";
  font-family: FontAwesome;
}
.projects .project-container .project .project-info h3 {
  color: #1B1B1B;
}
.projects .project-container .project .project-info p {
  font-size: 12px;
  padding: 10px 0;
  color: #1B1B1B;
}
.projects .project-container.flip .project {
  transform: rotateY(180deg);
}

.contact {
  background-color: #b85852;
  scroll-margin-top: 4rem;
}
.contact .site-container {
  max-width: 400px;
}
.contact h2 {
  text-align: center;
  padding: 20px 0 40px;
}
.contact .top-left {
  display: flex;
  flex-wrap: wrap;
  height: 300px;
}
.contact .top-left input {
  font-family: "Space Mono", monospace;
  font-size: 1.125rem;
  padding: 24px 16px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 8px;
  border: none;
  background: #F5F5F5;
}
.contact .bottom-right {
  display: flex;
  height: 300px;
}
.contact .bottom-right #message {
  font-size: 1.125rem;
  width: 100%;
  padding: 24px 16px;
  border-radius: 8px;
  border: none;
  resize: none;
  background: #F5F5F5;
}
.contact button {
  background: transparent;
  color: #F5F5F5;
  border: 2px solid #1B1B1B;
  border-radius: 8px;
  margin: 20px 0;
  padding: 16px 32px;
  cursor: pointer;
  font-size: 16px;
  font-family: "Space Mono", monospace;
  transition: background 0.5s;
}
.contact button:is(:hover, :focus) {
  background-color: #00416A;
}
@media (min-width: 812px) {
  .contact .site-container {
    max-width: 800px;
  }
  .contact .top-left {
    width: 400px;
  }
  .contact .top-left input:last-child {
    margin-bottom: 0;
  }
  .contact .bottom-right {
    margin-left: 20px;
    width: 400px;
  }
  .contact .input-container {
    display: flex;
    flex-direction: row;
  }
}

footer p {
  color: #F5F5F5;
  padding: 20px 0;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}/*# sourceMappingURL=styles.css.map */