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

.navbar-container {
    position: fixed; 
    top: 0;
    left: 50%;
    transform: translateX(-50%); 
    width: fit-content; 
    z-index: 1000; 
    margin-top: 20px;
    background-color: transparent;
}

.information {
    width: 85%;
    max-width: 95%;
    height: auto;
    margin: 50px auto;
    background-color: #28611d;
    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;
    text-align: center;
    color: white;
    font-size: 40px;
    display: flex;
    padding-top: 50px;
    padding-bottom: 25px;
}



.quiz-container {
    width: 85%;
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: #28611d;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: white;
    font-size: 20px;
}

.question {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #031228;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #0c5312;
}

.malware-box, .malicious-box {
    width: 600px;
    min-height: 650px;
    height: auto;
    background-color: #031228;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    text-align: center; 
}


.header {
    font-size: 70px; 
    margin-bottom: 20px; 
    text-align: center;
}

.malware-text {
    font-size: 40px;
    font-weight: normal;
    line-height: 1.3;
    text-align: left;
    justify-content: left;
}


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