/* *** Variables *** */
html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Oxygen", Verdana, Geneva, sans-serif;
  margin: 0;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover;
}
body .center {
  text-align: center;
}

nav {
  position: fixed;
  text-align: center;
  margin: auto;
  width: 100%;
}
@media (min-width: 768px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
  }
}
nav button, nav .btn {
  border-radius: 0.6rem;
  padding: 0.6rem;
  margin: 0.2rem 0;
  font-size: 0.8rem;
  text-transform: capitalize;
}
nav .btn {
  text-decoration: none;
  border: 2px solid;
  color: unset;
}
@media (min-width: 768px) {
  nav .theme {
    align-self: start;
    text-align: left;
    width: 30vw;
  }
}
nav .justify-end {
  text-align: right;
  width: 30vw;
}
nav button, nav a {
  font-weight: 500;
}
@media (min-width: 768px) {
  nav .social {
    width: 40vw;
  }
}
nav .social a {
  display: inline-block;
  text-align: center;
  height: 1.2rem;
  width: 1.2rem;
  margin: 0.2rem;
  border-radius: 100%;
  line-height: 1.2rem;
  font-size: 1.2rem;
}

main header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
main header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  main header .container {
    margin-top: 60px;
    max-width: 56rem;
  }
}
main header .container h1 {
  text-align: center;
  text-transform: uppercase;
  font-family: "Carter One", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 2.5rem;
  max-width: 100%;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  main header .container h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  main header .container h1 {
    font-size: 4rem;
  }
}
main header .container h2, main header .container h3 {
  text-align: center;
}
main header .container h3 {
  font-size: 1.6rem;
}
main header .container p {
  max-width: 1200px;
}
@media (min-width: 768px) {
  main header .container p {
    font-size: 1.2rem;
  }
}
main header .container .subheading {
  font-family: "Oxygen", Verdana, Geneva, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02rem;
  padding: 0 15px;
}
main header .container .subheading.center {
  text-align: center;
}
@media (min-width: 768px) {
  main header .container .subheading {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  main header .container .subheading {
    font-size: 1.4rem;
    letter-spacing: 0.02rem;
  }
}
@media (min-width: 1200px) {
  main header .container .subheading {
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
main header .container .down-arrow {
  text-align: center;
  opacity: 30%;
  margin-top: -30px;
  transition: 0.5s;
}
@media (min-width: 768px) {
  main header .container .down-arrow {
    margin-top: 20vh;
  }
}
main #projects {
  padding-top: 80px;
  min-height: 100vh;
}
main #projects .heading {
  text-align: center;
  font-family: "Carter One", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}
main #projects .project-cards {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
main #projects .project-cards .project {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 250px;
  max-width: 300px;
  margin: 15px;
  border: 0.05rem solid;
  border-bottom: 0.25rem solid;
  position: relative;
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: 0.25rem;
  padding: 1rem;
  transition: 0.8s;
}
main #projects .project-cards .project p, main #projects .project-cards .project h3 {
  margin: 0 0 0.2rem;
}
main #projects .project-cards .project .year {
  font-size: 0.8rem;
  text-align: left;
  padding: 0.6rem;
}
main #projects .project-cards .project .icon {
  margin-top: -1rem;
  font-size: 1.2rem;
  transition: 0.5s;
}
main #projects .project-cards .project .title {
  font-size: 1.4rem;
  font-family: "Carter One", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}
main #projects .project-cards .project hr {
  border-width: 0.25rem;
  border-radius: 200px;
  width: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
main #projects .project-cards .project .description {
  font-size: 1.2rem;
}
main #projects .project-cards .project .btn-container {
  margin-top: auto;
  display: inline-block;
  padding: 0.8rem;
}
main #projects .project-cards .project .btn-container .unavailable {
  margin: 0.2rem 0;
  padding-bottom: 0.6rem;
  font-style: italic;
}
main #projects .project-cards .project .btn-container .btn {
  text-decoration: none;
  border: 1px solid;
  border-radius: 100px;
  padding: 0.6rem;
  margin: 0.2rem;
  opacity: 1 !important;
}
main #projects .project-cards .project.available-false {
  opacity: 0.65;
  cursor: not-allowed;
}
main #blog {
  padding-top: 80px;
  margin: auto;
}
@media (min-width: 768px) {
  main #blog {
    width: 85%;
    max-width: 42rem;
  }
}
main #blog .heading {
  text-align: center;
  font-family: "Carter One", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}
main #blog .blog-posts .blog {
  text-decoration: none;
  padding: 1.5rem;
  transition: 0.6s;
}
main #blog .blog-posts .blog h2, main #blog .blog-posts .blog h3 {
  margin-bottom: 0.2rem;
  text-align: center;
}
main #blog .blog-posts .blog .title {
  font-family: "Carter One", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}
main #blog .blog-posts .blog .subheading {
  margin: 0;
  font-size: 1.2rem;
}
main #blog .blog-posts .blog .date {
  text-align: center;
}
main #blog .blog-posts .blog .read-more {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
main #blog .blog-posts .blog .read-more a {
  padding: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
main #blog .blog-posts .blog .source a {
  text-decoration: none;
}
main #blog .blog-posts .blog:hover {
  color: inherit;
  border-radius: 1rem;
}
body.dark main #blog .blog-posts .blog:hover {
  background-color: rgba(245, 245, 245, 0.1);
}
body.light main #blog .blog-posts .blog:hover {
  background-color: rgba(105, 105, 105, 0.1);
}
main #career {
  display: flex;
  align-items: center;
  justify-content: center;
}
main #career .container {
  max-width: 1200px;
}
main #career .container h2, main #career .container h3 {
  text-align: center;
}
main #career .container p {
  text-align: left;
}
main #career .container p.center {
  text-align: center;
}
@media (min-width: 768px) {
  main #career .container p {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  main #career .container li {
    font-size: 1.2rem;
  }
}

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