/* ============== VARS ============== */
:root {
  --color-content: #eeeeee;
  --color-line: rgba(255,255,255,0.1);
  --color-border: rgba(32,34,38,1);
  --color-overlay: rgba(32, 34, 38, 0.6);
  --color-overlay-transparent: rgba(32, 34, 38, 0);
  --color-overlay-dark: rgba(32, 34, 38, 0.8);
  --content-width: 1100px; }

/* ============== MIXINS ============== */
/* ============== BASE STYLES ============== */
* {
  outline: none; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.clear {
  clear: both; }

.left {
  text-align: left; }

.right {
  text-align: right; }

.center {
  text-align: center; }

b, strong {
  opacity: 1;
  color: #eee; }

i, em {
  font-style: italic; }

hr {
  border: none;
  margin: 0 auto;
  padding: 0; }

h1 {
  color: #FFFFFF;
  font-size: 38px;
  margin-bottom: 40px; }

h2 {
  color: #FFFFFF;
  font-size: 24px;
  margin-bottom: 20px; }

p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  color: #bbb;
  margin: auto;
  margin-bottom: 15px; }

ul li {
  color: #bbb;
  opacity: 0.8; }

blockquote {
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  margin: 20px 10px;
  padding: 5px 10px 3px; }
  blockquote p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #ddd; }

a {
  text-decoration: none;
  color: #FFFFFF; }
  a :hover {
    text-decoration: none; }

/* ============== BODY ============== */
html {
  height: 100%; }

body {
  width: 100%;
  min-height: 100%;
  background-color: #202226;
  font-family: 'Lato', sans-serif;
  overflow-y: scroll;
  display: flex;
  flex-direction: column; }

#bg {
  position: fixed;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-color: rgba(32, 34, 38, 0.68); }

#body {
  position: absolute;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0; }

#bgVideo {
  position: fixed;
  right: -10%;
  bottom: -10%;
  min-width: 120%;
  min-height: 120%;
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

#content {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  padding-top: 120px; }
  #content .content-row,
  #content .content-row-full {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 0 100px; }
  #content .content-row-full {
    width: auto; }
  #content .content-row {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto; }
  #content .content-dark {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--color-overlay); }

h1 {
  letter-spacing: 2px;
  font-size: 30px;
  opacity: 0.7; }

/* ============== HEADER ============== */
header {
  visibility: hidden;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
  padding: 10px 0;
  color: #f1f1f1; }
  header.header-small {
    position: fixed;
    top: 0;
    height: 60px;
    padding: 0;
    background-color: var(--color-overlay-dark);
    --blur: blur(2px);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    -o-backdrop-filter: var(--blur);
    -moz-backdrop-filter: var(--blur); }
  header #header-container {
    height: 100%;
    max-width: var(--content-width);
    margin: 0 auto 0;
    top: 0; }
    header #header-container #header-name {
      font-size: 32px;
      margin-top: 20px;
      margin-left: 20px;
      height: 100%;
      display: block;
      float: left;
      opacity: 0.6;
      transition: 0.2s; }
      header #header-container #header-name:hover {
        opacity: 1;
        transition: 0.2s; }
      header #header-container #header-name img {
        margin-top: 6px;
        height: 80%;
        width: auto; }
    header #header-container nav {
      height: 100%;
      margin-right: 20px;
      float: right;
      display: flex;
      align-items: center; }
      header #header-container nav a {
        padding: 25px 10px;
        color: #eeeeee;
        opacity: 0.4;
        text-decoration: none;
        font-size: 14px;
        text-align: center;
        align-items: center;
        transition: 0.2s; }
        header #header-container nav a:hover {
          text-decoration: none;
          opacity: 1;
          transition: 0.2s; }
        header #header-container nav a#nav-link-development {
          margin-left: 30px; }

@media (max-width: 650px) {
  header {
    height: 60px !important; } }

/* ============== FOOTER ============== */
footer {
  text-align: center;
  overflow: hidden;
  width: 100%;
  flex-grow: 1;
  margin: 0;
  padding: 0 0 80px;
  color: #eeeeee; }
  footer hr {
    margin: 0 100px 100px; }

#footer-social img {
  opacity: 0.3;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  object-fit: contain;
  transition: 0.4s; }

#footer-social img:hover {
  opacity: 1;
  scale: 1.2;
  transition: 0.2s; }

#footer-copyright {
  margin: 0 auto; }
  #footer-copyright a {
    opacity: 0.4;
    transition: 0.4s; }
  #footer-copyright a:hover {
    text-decoration: none;
    opacity: 1;
    transition: 0.2s; }

/* ============== INDEX ============== */
#index {
  text-align: center; }

#index-logo {
  max-width: 400px;
  max-height: 400px;
  margin: 0 auto 50px;
  overflow: hidden; }
  #index-logo #index-logo-video,
  #index-logo #index-logo-video-test {
    width: 100%;
    height: 100%; }

.index-content {
  margin-bottom: 50px;
  text-align: center; }

.index-content p strong {
  color: #fff;
  font-weight: normal; }

#index-main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 50px; }
  #index-main h1, #index-main h2, #index-main p {
    width: unset;
    max-width: unset; }
  #index-main h1 {
    font-size: 48px;
    margin-top: 20px;
    opacity: 0.7;
    padding-bottom: 10px;
    margin-bottom: 12px; }
  #index-main h2 {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
    opacity: 1;
    color: #aaa; }
  #index-main p {
    margin: 10px;
    font-size: 12px; }
  #index-main #index-main-photo {
    align-self: center;
    width: 280px;
    height: fit-content;
    margin: 25px 20px; }
    #index-main #index-main-photo img {
      width: 250px;
      height: 250px;
      object-fit: cover;
      border: 4px solid rgba(0, 0, 0, 0.7);
      border-radius: 50%;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); }

#index-links {
  display: flex;
  flex-direction: column;
  justify-content: center; }
  #index-links h2, #index-links p {
    width: unset;
    max-width: unset; }
  #index-links h2 {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 20px;
    opacity: 1;
    color: #ccc; }
  #index-links p {
    margin: 0;
    margin-bottom: 5px;
    font-size: 12px; }
  #index-links #index-links-buttons {
    margin-top: 40px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-self: center; }
    #index-links #index-links-buttons a {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 45px;
      font-size: 16px;
      justify-content: center;
      align-items: center;
      padding: 0;
      margin-bottom: 10px;
      opacity: 0.5;
      border-radius: 25px;
      background-color: rgba(0, 0, 0, 0.3);
      background-image: none;
      background-repeat: no-repeat;
      background-size: 35px;
      background-position: 10px center;
      transition: 0.4s; }
      #index-links #index-links-buttons a:hover {
        opacity: 1;
        transition: 0.1s;
        background-size: 45px;
        background-position: 5px center;
        font-size: 20px;
        transform: scale(1.05); }
    #index-links #index-links-buttons #link-email {
      background-image: url("/images/social/email.png"); }
    #index-links #index-links-buttons #link-bsky {
      background-image: url("/images/social/bsky.png"); }
    #index-links #index-links-buttons #link-github {
      background-image: url("/images/social/github.png"); }
    #index-links #index-links-buttons #link-discord {
      background-image: url("/images/social/discord.png"); }
    #index-links #index-links-buttons #link-steam {
      background-image: url("/images/social/steam.png"); }
    #index-links #index-links-buttons #link-twitch {
      background-image: url("/images/social/twitch.png"); }
    #index-links #index-links-buttons #link-soundcloud {
      background-image: url("/images/social/soundcloud.png"); }
    #index-links #index-links-buttons #link-reddit {
      background-image: url("/images/social/reddit.png"); }
    #index-links #index-links-buttons #link-linkedin {
      background-image: url("/images/social/linkedin.png"); }
    #index-links #index-links-buttons #link-wilder {
      background-image: url("/images/wilder.png");
      margin-top: 40px; }

/* ============== 404 ============== */
#error-404 {
  max-width: var(--content-width);
  margin: 0 auto 100px;
  text-align: center; }
  #error-404 h1 {
    margin: 0;
    font-size: 42px; }
  #error-404 h2 {
    margin: 0;
    margin-top: 20px;
    margin-bottom: 80px;
    font-size: 20px; }

#contact {
  text-align: center; }
