body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
  background-color: #183C62;
  overflow: auto;
  height: 200vh;
  padding-top: 70px;
}

.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: rgb(180, 178, 178);
  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;
}

.background-container {
  width: 100%;
  height: 100vh; 
  background-size: cover; 
  background-position: center; 
  transition: opacity 1s ease-in-out; 
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; 
  border-radius: 50px;
}

.article-container {
  width: 100%; 
  max-width: 95%;
  height: 80vh; 
  margin: 50px auto; 
  background-color: #c46527; 
  border-radius: 20px; 
  padding: 40px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); 
  position: relative; 
  z-index: 2; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

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

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

h2{
  font-size: 100px;
}

p {
  font-size: 32px; 
  max-width: 1500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 auto; 
  text-align: justify;
  font-weight: bold;
}


.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;
}

