body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
}

.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: 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;
}

form {
    background-color: rgb(39, 38, 38);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 10px rgb(83, 83, 83);
}

label {
    color: aliceblue;
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
}

input, textarea, select {
    width: 70%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    background: #555;
    color: #fff;
}

.buttons {
    width: 50%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 40%;
}

button {
    background: #666;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    width: 40%;
}

button:hover {
    background: #888;
    color: black;
}

#feltetel {
    text-align: center;
    margin-top: 15px;
}

#checkbox {
    width: auto;
}

#de-du {
    display: flex;
    justify-content: space-between;
    width: 40%;
    gap: 10px;
}

#idopont {
    color: aliceblue;
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
    cursor: default;
}

@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
        gap: 10px;
    }
    button {
        width: 100%;
    }
}

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;
}