@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body, html {
  font-family:'Inter', sans-serif;
  background: #0d131a;
  color: #f5f5f5;
    text-align: center;
    align-items: center;
  }
  .container {
    max-width: 60%;
    margin: 0 auto;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  th {
    background-color: #1b263b;
  }
  tr:hover {
    background-color: #1b263b;
  }
  .expandable {
    cursor: pointer;
  }
  .hidden {
    display: none;
  }

  .portfolio-logo {
    height: 40px;
  }

  
  .buttons {
    gap: 20px;
    margin-top: 60px;
  }

  .button {
      padding: 10px 20px;
      font-size: 1rem;
      border: 2px solid transparent;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .button.primary {
    border: 2px solid #007BFF;
    background-color: transparent;
    color: #007BFF;
}

.button.primary:hover {
    color: #fff;
}

.button.secondary {
    background-color: transparent;
    color: #007BFF;
}

.button.secondary:hover {
    color: #fff;
}

.highlight {
  background: #6495ED;
  font-weight: bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

@media (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
  .container {
    display: contents;
  }
  .buttons {
      display: grid;
  }
}