@font-face {
  font-family: 'Frutiger';
  src: url(frutiger.ttf);
}

body {
  margin: 0;
  background: url("imgs/background.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, a, li {
  font-family: 'Frutiger', sans-serif;
}

a {
  text-decoration: underline;
}

p {
  font-size: 15px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container-inside {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
    justify-content: space-around;
    display: flex;
}

.container-inside-2 {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
}

@media (max-width: 768px) {
  body {
    background-attachment: fixed;
    font-size: 14px;
  }

  .container {
    max-width: 100%;
    padding: 10px;
  }

  .container-inside,
  .container-inside-2 {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 5px;
  }

  .window {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .window-body {
    overflow-x: auto;
  }

  .social-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .tech-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
  }

  table {
    width: 100% !important;
    font-size: 13px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  table th,
  table td {
    padding: 6px;
  }

  menu[role="tablist"] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  menu[role="tablist"] button {
    flex: 1 1 45%;
    font-size: 13px;
  }

  .tech-icons img {
    height: 40px !important;
  }

  .social-icons img {
    height: 50px !important;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .title-bar-text {
    font-size: 12px;
  }

  .window-body p {
    font-size: 13px;
  }

  .social-icons {
    grid-template-columns: 1fr;
  }

  .tech-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}