body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #2a2a2a; /* Sötétszürke háttérszín */
    color: white; /* Fehér alapértelmezett szövegszín */
  }
  
  /* Header és navigáció */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header h1 {
    margin: 0;
    font-size: 24px;
  }
  
  h2.section-title {
    text-align: center;
    font-size: 2.5em;
    margin: 30px 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .container {
    padding: 50px 20px;
    display: flex;
    justify-content: space-between; /* Align items side by side */
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .setup-section {
    flex: 1;
    min-width: 300px;
    max-width: 30%; /* Adjust width with percentage */
    background: #2a2a3b;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*background-size: cover;*/ /* Make the background image fill the element's size */
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .setup-section:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  
  .setup-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-size: 70% 80%;*/ /* Make the background image fill the element's size */
    background-position: center;
    filter: blur(5px);
    z-index: -1;
    opacity: 0.2;
  }
  
  
  .setup-section h2 {
    margin: 0 0 20px;
    font-size: 1.8em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .setup-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .setup-section ul li {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
    font-size: 25px;
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);*/
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
  }
  
  .setup-section ul li:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 8px 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
  }
  
  nav a:hover {
    border: 2px solid white;
    border-radius: 5px;
    background-color: #555;
  }
