body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
    color: aliceblue;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden-focusable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
.visually-hidden-focusable:active,
.visually-hidden-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

h1 {
    text-align: center;
    color: aliceblue;
    font-size: 2.5rem;
}

.container {
    margin-top: 10px;
    margin-left: 10px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.5s;
}

.change .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.sidebar {
    height: 100vh;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(37, 37, 37);
    overflow-x: hidden;
    transition: 0.6s;
    padding-top: 65px;
}

.sidebar a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #575757;
}

#aktualis {
    color: black;
    background-color: #8e8e8e;
}

#site {
    min-height: 100vh;
}

.faq-container {
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 780px;
    background-color: rgb(37, 37, 37);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(83, 83, 83);
}
.faq {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer;
    text-align: justify;
    line-height: 1.6rem;
    font-size: 18px;
}

.faq:hover {
    background-color: #949494;
    color: black;
}

.faq:hover a{
    color: black;
}

.faq h2 {
    padding: 8px;
    margin: 0;
    font-size: 1.4rem;
}

.faq p {
    margin: 0;
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.faq.active p {
    max-height: 200px;
    padding: 10px;
}

.faq a {
    color: #368680;
    margin: 0;
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.faq.active a:hover {
    color: black;
}

.faq.active a {
    max-height: 200px;
    padding: 10px;
}

@media (max-width: 480px) {
    .faq h2 {
        text-align: left;
    }
    .faq p {
        text-align: left;
    }
    .faq-container {
        width: 80%;
    }
}

footer { 
    background-color: #0e1432;
    padding: 10px 0px 10px 0px;
}

footer p {
    text-align: center;
    margin: 0px;
    color: aliceblue;
    line-height: 0.8;
    font-size: 1rem;
}

