/* SUPER SMALL */
@media screen and (max-width: 300px) {
  * {
    width: 100%;
  }

  body {
    background-color: rgb(196, 196, 196);
  }

  nav.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    flex-wrap: wrap;
  }
}

/* DESKTOP */
@media screen and (min-width: 800px) {
  .hidden {
    display: flex !important;
  }

  .toggle-navbar-btn {
    display: none !important;
  }

  .nav-items {
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    margin: 0px !important;
  }

  section.contact form > section.actionButtons {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .btn-primary,
  .btn-danger {
    width: 100%;
  }

  main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px 0px;
    justify-content: center;
  }

  section.home {
    background-color: #fff;
    border-radius: 20px;
    width: 400px;
    position: sticky;
    top: 20px;
    height: 100%;
    width: 40%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  section.about {
    max-width: 600px;
    width: 40%;
    max-width: 500px;
  }

  footer {
    width: 100%;
  }

  div.githubRepoList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  div.githubRepoList > div.repoBox {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}
