/* css styles */

body {
  font-family: 'Arial', sans-serif;
  position: relative;
}

body::before,
body::after {
  content: "";
  background-image: url('assets/images/bg-pic.svg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 300px; /* Adjust size as needed */
  opacity: 0.3; /* Adjust this value to change transparency (0.0 to 1.0) */
  position: fixed;
  z-index: -1; /* Ensures the images stay behind your content */
  pointer-events: none; /* Allows clicking through the images */
}

body::before {
  background-position: right bottom;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

body::after {
  background-position: right bottom;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

  
/* Add this to ensure content is above the background image */
.content-wrapper {
  position: relative;
  z-index: 1;
}

  /* @import url('https://fonts.cdnfonts.com/css/latin-modern-sans');

  /* Apply Latin Modern Sans to the whole document */
  /* body {
    font-family: 'Latin Modern Sans', sans-serif;
  } */ */
  
  /* Customize header colors */
  h1, h2, h3 {
    color: #4a4a4a;
  }
  
  /* Style links */
  a {
    color: #0066cc;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Customize the navigation bar */
  .navbar {
    background-color: #f8f9fa;
  }
  
  /* Style code blocks */
  pre {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
  }
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .custom-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 4px; /* This adds slight rounding to the buttons */
  }
  
  .custom-button:hover {
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none; /* This prevents underline on hover */
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .card h3 {
    margin-top: 0;
    color: #2c3e50;
  }