@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  --linkedin-color: #0077B5;
  --bsky-color: #1DA1F2;

  a {
    :visited {
      color: inherit;
    }
  }
}

html {
  font-family: 'Times New Roman', serif;
}

@media screen and (max-width: 425px) {
  body {
    grid-template-columns: auto;
    gap: 1rem;
  }
}

@media screen and (min-width: 426px) {
  body {
    grid-template-columns: 8rem auto;
    gap: 3rem;
    min-height: 98vh;
  }
  
}
body {
  background-color: whitesmoke;
  display: grid;
}

@media screen and (min-width: 426px) {
  aside {
    border-right: 1px solid #CCC;
  }
}

@media screen and (max-width: 425px) {
  aside {
    border-bottom: 1px solid #CCC;
  }
}

aside {
  nav {
    ul {
      list-style-type: none;
      padding-left: 0;
  
      .disabled {
        color: gray;
        cursor: not-allowed;
      }
    }
  }
}

@media screen and (min-width: 426px) {
  section {
    max-width: 50%;
  }
}

section {
  .social-medias {
    display: flex;
    gap: 1rem;

    ul {
      list-style-type: none;
      padding-left: 0;
      margin-top: 0.5rem;
    }

    a {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      text-decoration: none;
      font-size: 14px;

      &.linkedin {
        color: var(--linkedin-color);
      }
  
      &.bsky {
        color: var(--bsky-color);
      }

      &.github {
        color: black;
      }
    }
  }
}