body {
    background-color: #f5f5dc; /* Beige background */
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  nav {
    background-color: #f5deb3; /* Light beige navbar */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Distribute items evenly */
    align-items: center; /* Center items vertically */
  }
  
  .logo {
    font-size: 20px;
    color: #666;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  nav ul li {
    display: inline-block;
  }
  
  nav ul li a {
    display: block;
    color: #666;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
  }
  
  nav ul li a:hover {
    color: #333; /* Darken text color on hover */
    transform: scale(1.05); /* Grow the size a little on hover */
  }
  
  /* Existing CSS styles */

  .content {
    background-color: #f5f5dc; /* Match body background color */
    padding: 10px 0;
    /*background-image: url("/dist/img/Háttér1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
  }
  
  .content .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  
  .description {
    align-items: center;
    text-align: center;
    width: 60%;
    font-size: 22px;
  }

  .description h2{
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 34px;
  }
  
  .profile {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
  
  .profile img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .profile .details {
    text-align: center;
  }

  .details h2 {
    font-size: 34px;;
  }

  .details p {
    font-size: 22px;
    padding: 0;
  }
  
  .quote-section {
    background-color: #f5f5dc; /* Match body background color */
    padding: 10px 0;
  }
  
  .quote-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .quote {
    max-width: 1200px; /* Limit the width of the quote section */
    margin: 0 auto;
  }
  
  .quote-text {
    color: #533e2d; /* Darker beige color */
    font-size: 36px !important; /* Adjust as needed for visibility */
    margin-bottom: 20px; /* Add space between the quote and the next paragraph */
    margin-top: 10px;
  }
  
  .quote p {
    font-size: 22px; /* Adjust as needed for visibility */
    margin-bottom: 20px; /* Add space between paragraphs */
  }
  
  .button {
    display: inline-block;
    background-color: #333; /* Dark background color for the button */
    color: #fff; /* White text color */
    padding: 12px 24px; /* Adjust padding as needed */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 22px;
  }
  
  .button:hover {
    background-color: #555; /* Darken background color on hover */
  }
  
  .help-section {
    background-color: #f5f5dc; /* Match body background color */
    padding: 10px 0;
  }
  
  .help-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .help-content {
    max-width: 1200px; /* Limit the width of the help section */
    margin: 0 auto;
  }
  
  .help-content h2 {
    font-size: 34px; /* Adjust as needed for visibility */
    margin-bottom: 20px; /* Add space between the heading and paragraphs */
  }
  
  .help-content p {
    font-size: 22px; /* Adjust as needed for visibility */
    margin-bottom: 20px; /* Add space between paragraphs */
  }
  
  .button {
    display: inline-block;
    background-color: #333; /* Dark background color for the button */
    color: #fff; /* White text color */
    padding: 12px 24px; /* Adjust padding as needed */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #555; /* Darken background color on hover */
  }
  
footer {
    background-color: #f5deb3; /* Light beige footer */
    padding: 20px 0;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-content p {
    margin: 0;
}

.left, .middle, .right {
    flex: 1;
    text-align: center;
}

.right {
    text-align: right;
}

/* Adjust the size of the Facebook icon if needed */
.right i {
    font-size: 24px;
}

.hamburger {
  display: none;
}

@media only screen and (max-width: 825px) {
  nav ul li {
    display: block; /* Ensure nav links are stacked vertically */
}

  .logo {
      display: block;
      text-align: center;
  }

  .nav-links {
      display: none;
  }

  .hamburger {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
  }

  .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 5px auto;
      transition: all 0.3s ease;
  }

  .hamburger.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links.open {
      display: block !important;
  }

  .open {
    display: block !important;
  }

  footer {
    padding: 10px; /* Reduce padding for smaller screens */
}
.container {
  flex-direction: column;
}

.description {
  align-items: center;
  text-align: center;
  width: 100%;
  font-size: 22px;
}
.profile {
  width: 100%;
}
}