:root {
  --bg: 5, 33, 48;
  --bgl: 7, 45, 65;
  --fg: 255, 255, 255;
  --accent: #FF689A;
}

/* Font Imports */
@font-face {
  font-family: "Cascadia Code";
  src: url("./fonts/cascadiacode.ttf");
}
@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geistmono.ttf");
}
@font-face {
  font-family: "Google Sans Flex";
  src: url("./fonts/googlesansflex.ttf");
}
@font-face {
  font-family: "Iceberg";
  src: url("./fonts/iceberg.ttf");
}
@font-face {
  font-family: "Nova Mono";
  src: url("./fonts/novamono.ttf");
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/roboto.ttf");
}
@font-face {
  font-family: "Space Mono";
  src: url("./fonts/spacemono.ttf");
}
@font-face {
  font-family: "Workbench";
  src: url("./fonts/workbench.ttf");
}

body {
  overflow-x: hidden;
}
.footer {
  width: 100vw;
  height: 65px;
  background-color: rgb(var(--bg));
  text-align: center;
  align-content: center;
  & > span {
    color: rgb(var(--fg));
    font-size: 20px;
    font-family: "Google Sans Plex", sans-serif;
    & > a {
      color: var(--accent);
    }
  }
}

@media (min-width: 1480px) {
  body {
    margin: 0;
  }
  .navigation-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: auto;
    margin: 0 0 0 0;
    padding: 0 20px 0 20px;
    height: 65px;
    background-color: rgb(var(--bg));
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 20px;
    & > .navbar-container {
      justify-content: center;
      align-content: center;
      width: auto;
      height: 63px;
      border-bottom: 2px solid rgb(var(--fg));
      cursor: pointer;
    }
    & > .navbar-container:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    & > .navbar-container .navbar-links {
      color: rgb(var(--fg));
      font-family: "Google Sans Flex", sans-serif;
      font-size: 25px;
      text-decoration: none;
      font-optical-sizing: auto;
    }
    & > .navbar-name {
      color: color-mix(in srgb, rgb(var(--fg)) 95%, var(--accent) 5%);
      font-size: 40px;
      font-family: "Iceberg", monospace;
      font-weight: 700;
      cursor: default;
    }
  }
  .main-content {
    height: 100%;
    background: url("./backgrounds/image000.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    & > .mc-info {
      cursor: default;
      z-index: 10;
      backdrop-filter: blur(4px);
      margin: 0 auto;
      width: 100%;
      height: calc(100vh - 65px);
      background: rgba(var(--bg), 0.5);
      position: relative;
      align-items: center;
      display: flex;
      justify-content: center;
      & > .mc-info-cont {
        position: absolute;
        display: grid;
        grid-template-columns: 1fr 2fr;
        width: fit-content;
        gap: 10%;
        margin: 0 auto;
        place-items: center;
        & > picture .mc-info-image {
          max-height: 500px;
        }
        & > .mc-info-text {
          color: rgb(var(--fg));
          font-family: "Google Sans Flex", sans-serif;
          font-size: 45px;
          font-weight: 600;
        }
      }
    }
    & > .mc-details {
      width: 100%;
      height: auto;
      background-color: rgb(var(--bgl));
      padding: 30px 0px;
      & > p { 
        margin: 0 auto;
        max-width: 900px;
        font-family: "Google Sans Flex";
        font-size: 35px;
      }
      & > p.mc-details-one {
        color: rgb(var(--fg));
      }
    }
  }
  hr {
    max-width: 1000px;
  }
}

@media (max-width: 1480px) { /* min-width: 1140px */
  body {
    margin: 0;
  }
  .navigation-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: auto;
    margin: 0 0 0 0;
    padding: 0 20px 0 20px;
    height: 65px;
    background-color: rgb(var(--bg));
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 20px;
    & > .navbar-container {
      justify-content: center;
      align-content: center;
      width: auto;
      height: 63px;
      border-bottom: 2px solid rgb(var(--fg));
      cursor: pointer;
    }
    & > .navbar-container:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    & > .navbar-container .navbar-links {
      color: rgb(var(--fg));
      font-family: "Google Sans Flex", sans-serif;
      font-size: 25px;
      text-decoration: none;
      font-optical-sizing: auto;
    }
    & > .navbar-name {
      color: color-mix(in srgb, rgb(var(--fg)) 95%, var(--accent) 5%);
      font-size: 40px;
      font-family: "Iceberg", monospace;
      font-weight: 700;
      cursor: default;
    }
  }
  .main-content {
    height: 100%;
    background: url("./backgrounds/image000.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    & > .mc-info {
      cursor: default;
      z-index: 10;
      backdrop-filter: blur(4px);
      margin: 0 auto;
      display: flex;
      width: 100%;
      height: calc(100vh - 65px);
      background: rgba(var(--bg), 0.5);
      position: relative;
      align-items: center;
      display: flex;
      justify-content: center;
      & > .mc-info-cont {
        position: absolute;
        display: grid;
        grid-template-columns: 1fr 2fr;
        width: fit-content;
        gap: 10%;
        margin: 0 auto;
        place-items: center;
        & > picture .mc-info-image {
          max-height: 400px;
        }
        & > .mc-info-text {
          color: rgb(var(--fg));
          font-family: "Google Sans Flex", sans-serif;
          font-size: 35px;
          font-weight: 600;
        }
      }
    }
    & > .mc-details {
      width: 100%;
      height: auto;
      background-color: rgb(var(--bgl));
      padding: 30px 0px;
      & > p { 
        margin: 0 auto;
        max-width: 900px;
        font-family: "Google Sans Flex";
        font-size: 35px;
      }
      & > p.mc-details-one {
        color: rgb(var(--fg));
      }
    }
  }
  hr {
    max-width: 1000px;
  }
}

@media (max-width: 1140px) { /* min-width: 850px */
  body {
    margin: 0;
  }
  .navigation-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: auto;
    margin: 0 0 0 0;
    padding: 0 20px 0 20px;
    height: 65px;
    background-color: rgb(var(--bg));
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 20px;
    & > .navbar-container {
      justify-content: center;
      align-content: center;
      width: auto;
      height: 63px;
      border-bottom: 2px solid rgb(var(--fg));
      cursor: pointer;
    }
    & > .navbar-container:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    & > .navbar-container .navbar-links {
      color: rgb(var(--fg));
      font-family: "Google Sans Flex", sans-serif;
      font-size: 25px;
      text-decoration: none;
      font-optical-sizing: auto;
    }
    & > .navbar-name {
      color: color-mix(in srgb, rgb(var(--fg)) 95%, var(--accent) 5%);
      font-size: 40px;
      font-family: "Iceberg", monospace;
      font-weight: 700;
      cursor: default;
    }
  }
  .main-content {
    height: 100%;
    background: url("./backgrounds/image000.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    & > .mc-info {
      cursor: default;
      z-index: 10;
      backdrop-filter: blur(4px);
      margin: 0 auto;
      width: 100%;
      height: calc(100vh - 65px);
      background: rgba(var(--bg), 0.5);
      position: relative;
      align-items: center;
      display: flex;
      justify-content: center;
      & > .mc-info-cont {
        position: absolute;
        display: grid;
        grid-template-columns: 1fr 2fr;
        width: fit-content;
        gap: 10%;
        margin: 0 auto;
        place-items: center;
        & > picture .mc-info-image {
          max-height: 300px;
        }
        & > .mc-info-text {
          color: rgb(var(--fg));
          font-family: "Google Sans Flex", sans-serif;
          font-size: 35px;
          font-weight: 600;
        }
      }
    }
    & > .mc-details {
      width: 100%;
      height: auto;
      background-color: rgb(var(--bgl));
      padding: 30px 0px;
      & > p { 
        margin: 0 auto;
        max-width: 900px;
        padding-left: 30px;
        font-family: "Google Sans Flex";
        font-size: 35px;
      }
      & > p.mc-details-one {
        color: rgb(var(--fg));
      }
    }
  }
  hr {
    max-width: 1000px;
  }
}

@media (max-width: 850px) { /* min-width: 650px */
  body {
    margin: 0;
  }
  .navigation-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: auto;
    margin: 0 0 0 0;
    padding: 0 20px 0 20px;
    height: 65px;
    background-color: rgb(var(--bg));
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 20px;
    & > .navbar-container {
      justify-content: center;
      align-content: center;
      width: auto;
      height: 63px;
      border-bottom: 2px solid rgb(var(--fg));
      cursor: pointer;
    }
    & > .navbar-container:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    & > .navbar-container .navbar-links {
      color: rgb(var(--fg));
      font-family: "Google Sans Flex", sans-serif;
      font-size: 25px;
      text-decoration: none;
      font-optical-sizing: auto;
    }
    & > .navbar-name {
      color: color-mix(in srgb, rgb(var(--fg)) 95%, var(--accent) 5%);
      font-size: 40px;
      font-family: "Iceberg", monospace;
      font-weight: 700;
      cursor: default;
    }
  }
  .main-content {
    height: 100%;
    background: url("./backgrounds/image000.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    & > .mc-info {
      cursor: default;
      z-index: 10;
      backdrop-filter: blur(4px);
      margin: 0 auto;
      width: 100%;
      height: calc(100vh - 65px);
      background: rgba(var(--bg), 0.5);
      position: relative;
      align-items: center;
      display: flex;
      justify-content: center;
      & > .mc-info-cont {
        position: absolute;
        display: grid;
        grid-template-columns: 1fr 2fr;
        width: fit-content;
        gap: 10%;
        margin: 0 auto;
        place-items: center;
        & > picture .mc-info-image {
          max-height: 280px;
        }
        & > .mc-info-text {
          color: rgb(var(--fg));
          font-family: "Google Sans Flex", sans-serif;
          font-size: 30px;
          font-weight: 600;
        }
      }
    }
    & > .mc-details {
      width: 100%;
      height: auto;
      background-color: rgb(var(--bgl));
      padding: 30px 0px;
      & > p { 
        margin: 0 auto;
        max-width: 900px;
        padding-left: 30px;
        font-family: "Google Sans Flex";
        font-size: 35px;
        color: rgb(var(--fg));
      }
    }
  }
  hr {
    max-width: 1000px;
  }
}

/* @media {max-width: 650px} */

