@charset "UTF-8";
@font-face {
  font-family: "RobotoRegular";
  src: url("../../fonts/Roboto/Roboto-Regular.woff"); }
@font-face {
  font-family: "RobotoThin";
  src: url("../../fonts/Roboto/Roboto-Thin.woff"); }
@font-face {
  font-family: "RobotoLight";
  src: url("../../fonts/Roboto/Roboto-Light.woff"); }
@font-face {
  font-family: "NothingYouCouldDo";
  src: url("../../fonts/NothingYouCouldDo/NothingYouCouldDo-Regular.ttf"); }
@font-face {
  font-family: "RobotoRegular";
  src: url("../../fonts/Roboto/Roboto-Regular.woff"); }
@font-face {
  font-family: "RobotoThin";
  src: url("../../fonts/Roboto/Roboto-Thin.woff"); }
@font-face {
  font-family: "RobotoLight";
  src: url("../../fonts/Roboto/Roboto-Light.woff"); }
@font-face {
  font-family: "NothingYouCouldDo";
  src: url("../../fonts/NothingYouCouldDo/NothingYouCouldDo-Regular.ttf"); }
* {
  box-sizing: border-box; }

html {
  background-color: white;
  color: #4c4c4c;
  font-family: RobotoRegular;
  margin: 0;
  height: 100%;
  min-width: 300px; }

body {
  margin: 0;
  height: 100%; }

header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../../images/backgrounds/IMG_1.jpg");
  background-size: cover;
  height: 100%; }
  header section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90%;
    font-family: RobotoThin;
    color: #F4F7F9;
    letter-spacing: 1.25rem; }
    header section h1 {
      font-size: 7vh;
      text-transform: uppercase;
      text-align: center; }

nav {
  padding: 2rem;
  display: flex;
  justify-content: space-between; }
  nav span a {
    text-transform: uppercase;
    letter-spacing: 0.35rem; }
  nav a {
    text-decoration: none;
    color: #F4F7F9; }
  nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0; }
  nav #hamburger-menu {
    color: #F4F7F9;
    font-size: 1.5rem;
    display: inline;
    cursor: pointer;
    display: none; }

@media screen and (max-width: 750px) {
  nav span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    nav span #hamburger-menu {
      display: block; }
  nav ul {
    display: none; }

  .responsive-nav {
    position: fixed;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.5s ease; }
    .responsive-nav ul {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      align-items: center;
      gap: 5rem;
      transition: all 0.5s ease; }
      .responsive-nav ul a {
        font-size: 1.5rem; } }
main {
  background-color: #F4F7F9;
  display: inline-block;
  width: 100%; }
  main article {
    margin: 6.25rem; }
    main article h1 {
      font-family: RobotoRegular;
      text-align: center;
      letter-spacing: 0.625rem;
      color: #4c4c4c;
      text-transform: uppercase; }
  main #social-media #social-media-logos {
    display: grid;
    margin-top: 4rem;
    justify-content: center;
    grid-auto-flow: column;
    gap: 4rem;
    font-size: 3rem; }
    main #social-media #social-media-logos i {
      color: #4c4c4c; }
    @media screen and (max-width: 750px) {
      main #social-media #social-media-logos {
        grid-auto-flow: row;
        grid-template-columns: 1fr 1fr;
        text-align: center; } }
  main #quote h2, main #quote p {
    max-width: 500px;
    display: inline-block; }
  main #quote #quote-content {
    margin: 0 auto;
    margin-top: 4rem;
    max-width: 40rem; }
  main #quote h2 {
    margin: 0 1rem 0 0;
    font-size: 10rem;
    font-family: serif;
    line-height: 6.25rem; }
  main #quote h3 {
    text-align: right;
    font-style: italic; }
  main #quote h3::before {
    content: '— '; }
  main #who-am-i #who-am-i-content {
    margin-top: 4rem;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto;
    grid-column-gap: 3rem; }
    main #who-am-i #who-am-i-content p {
      max-width: 400px; }
    main #who-am-i #who-am-i-content h2 {
      font-family: NothingYouCouldDo;
      font-size: 2.5rem; }
    main #who-am-i #who-am-i-content img {
      max-width: 300px;
      grid-row: 1 / span 2; }
  @media screen and (max-width: 800px) {
    main #who-am-i #who-am-i-content {
      display: flex;
      flex-direction: column;
      gap: 2rem; } }

hr {
  max-width: 200px;
  width: 20%; }

@media screen and (min-width: 750px) {
  .hidden {
    opacity: 0; } }
@media screen and (min-width: 750px) and (prefers-reduced-motion) {
  .hidden {
    transition: none; } }
@media screen and (min-width: 750px) {
  .show {
    opacity: 1;
    transition: all 2.5s; } }
button {
  font-family: RobotoRegular;
  text-align: center;
  background-color: #F4F7F9;
  height: 50px;
  letter-spacing: 2px;
  color: #4c4c4c;
  border: 1px solid #4c4c4c;
  text-align: center; }

button:hover {
  color: black;
  border: 1px solid black; }

footer {
  padding: 2.5rem 1.25rem 2.5rem 1.25rem;
  display: flex;
  justify-content: space-between; }
  footer div a {
    color: #4c4c4c; }
  @media screen and (max-width: 400px) {
    footer {
      flex-direction: column;
      align-items: center;
      gap: 1rem; } }

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