  body{
    height: 200vh;
    padding-top: 70px;
    background-color: #183C62;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
    overflow: auto;
  }
  
  .navbar-container {
    position: fixed; 
    top: 0;
    left: 50%;
    transform: translateX(-50%); 
    width: fit-content; 
    z-index: 1000; 
    margin-top: 20px;
    background-color: transparent;
  }
  
  .welcome-container {
    color: white;
    padding-top: 50px;
    max-width: 1250px; 
    margin: 0 auto; 
    text-align: center; 
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 1;
  }
  
  .article-container {
    width: 90%; 
    max-width: 1200px;
    height: 2000px; 
    margin: 50px auto; 
    background-color: #0a2a4a; 
    border-radius: 20px; 
    padding: 40px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); 
    position: relative; 
    z-index: 1; 
    color: white;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8vh; 
    padding-top: 50px;
  }

  .video-container{
    align-items: center;
    justify-content: center;
  }

  h1 {
    text-align: center;
    font-size: 100px; 
  }
  
  h2{
    font-size: 100px;
  }

  .headline {
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
  }
  
  p {
    font-size: 32px; 
    max-width: 1500px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0 auto; 
    text-align: justify;
  }
  
  
  .navbar-anchor {
    display: flex;
    align-items: center;
    background-color: #031228;
    border-radius: 20px; 
    padding: 10px 20px;
    width: fit-content; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
  }
  
  .nav-menu {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
    background-color: #031228;
  }
  
  .nav-menu li {
    margin: 0 10px;
    background-color: #031228;
  }
  
  .nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    border-radius: 10px;
    background-color: #031228;
  }
  
  .nav-menu li a:hover {
    background-color: #f3f3f3;
    color:#031228;
    font-weight: bolder;
  }
  
  
  .language-toggle {
    display: flex;
    align-items: center;
    color: white;
    margin-left: 20px; 
    background-color: #031228;
  }
  
  .language-toggle .EN,
  .language-toggle .HU {
    margin: 0 5px;
    background-color: #031228;
  }
  
  .check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  
  .switch {
    position: relative;
    width: 40px;
    height: 20px;
    background: #641c1c;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.4s ease-in-out;
  }
  
  
  .switch::after {
    content: '';
    position: absolute;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 25px;
    transition: 0.4s ease-in-out;
    border: 2px solid #641c1c;
    box-sizing: border-box;
  }
  
  
  .check:checked + .switch {
    background: #0c5312;
  }
  
  .check:checked + .switch::after {
    left: 20px;
    border: 2px solid #0c5312;
  }  