/* global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-image: url(../assets/background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: 'Quicksand', sans-serif;
    color: #ffffff;
    min-height: 100vh;
  }
  
  /* header */
  header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 24px 4px;
  }
  
  .logos {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .logo {
    height: 60px;
    flex-shrink: 0;
  }
  
  #maint {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 1500;
    line-height: 1.2;
    color: white;
  }
  
  /* section headings */
  h2 {
    color: white;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 1200;
    margin-left: 24px;
  }
  
  /* main content */
  main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 16px 12px;
  }
  
  /* layout: individual blocks */
  .block {
    background-color: #ffffff;
    color: #333;
    padding: 16px;
    border-radius: 15px;
    box-shadow: 2px 2px 1px #64509e;
    width: 100%;
    max-width: none;
    flex: 1 1 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  /* typography inside blocks */
  .titles {
    color: #c8b6ff;
    margin-bottom: 12px;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
  }
  
  pre {
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    white-space: pre-wrap;
    color: #c8b6ff;
  }
  
  .code {
    font-weight: 800;
    color: rgb(231, 198, 255);
  }
  
  /* footer */
  footer {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background: transparent;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* horizontal rule */
  hr {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin: 10px 16px;
  }
  
  /* media queries */
  @media (min-width: 768px) {
    header {
      align-items: flex-start;
    }
  
    main {
      padding: 32px;
    }
  
    .logo {
      height: 60px;
    }
  }
  
  @media (min-width: 1024px) {
    .block {
      padding: 20px;
    }
  }
  