/* Ganz oben in der CSS-Datei ergänzen */
* { box-sizing: border-box; }

/* body-Block korrigieren (deinen bestehenden body-Block ersetzen/ändern) */
body {
    background-image: url(../gfx/bg.png);
    background-repeat: no-repeat;
    background-position-y: 0%;
    background-size: cover;
    background-color: #000;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    /* WICHTIG: responsive */
    min-height: 100svh;
    width: 100vw;     /* statt 100vh */
    margin: 0;        /* gegen ungewollte Ränder */
    padding: 0;
}

a {
    color:#001723;
}
a:hover {
    color:#ff7003;
}

input {
    font-size: 24;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #555;
}
#login_form{
    font-size: 10px;
}

.LinkBtn{
    padding: 20px;
    font-size: 32px;
    font-weight: bolder;
    color: #0e0e0e;
    border-radius: 10px;
    margin: 50px;
}
.LinkBtn:hover{
    transform: scale(2.0); 
    background-color: #FFAA00;       
}
.GlassPane{
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 15px 15px 15px #000;
    width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}
.AIGif{
    border-radius: 50%; 
    border: 5px solid rgba(0,0,0,0.5);
    margin: 10px;
}
#header{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    animation: headerAnim 3s ease 0s 1 normal forwards;
}
#content{
    animation: contentAnim 3s ease 0s 1 normal forwards;
}
#footer{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    animation: footerAnim 3s ease 0s 1 normal forwards;
    font-size: 10px;
}
h1{
    color: #fefefe;
    font-size: 32px;
    font-weight: bolder;
    text-shadow: 5px 5px 10px #000;
    margin: 0;
}
h3{
    color: #fefefe;
    font-size: 24px;
    text-shadow: 5px 5px 10px #000;
    margin: 0;
}
h4{
    color: #262626;
    font-size: 18px;
    font-weight: bolder;
    text-shadow: 5px 5px 10px #ffffff;
    margin: 0;
}
h5{
    color: #ff5e00;
    font-size: 24px;
    text-shadow: 5px 5px 10px #000;
    margin: 0;
}
@keyframes headerAnim {
0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateY(-250px);
}

38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0);
}

55% {
    animation-timing-function: ease-in;
    transform: translateY(-65px);
}

72% {
    animation-timing-function: ease-out;
    transform: translateY(0);
}

81% {
    animation-timing-function: ease-in;
    transform: translateY(-28px);
}

90% {
    animation-timing-function: ease-out;
    transform: translateY(0);
}

95% {
    animation-timing-function: ease-in;
    transform: translateY(-8px);
}

100% {
    animation-timing-function: ease-out;
    transform: translateY(0);
}
}
@keyframes footerAnim {
0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateY(250px);
}

38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0);
}

55% {
    animation-timing-function: ease-in;
    transform: translateY(65px);
}

72% {
    animation-timing-function: ease-out;
    transform: translateY(0);
}

81% {
    animation-timing-function: ease-in;
    transform: translateY(28px);
}

90% {
    animation-timing-function: ease-out;
    transform: translateY(0);
}

95% {
    animation-timing-function: ease-in;
    transform: translateY(8px);
}

100% {
    animation-timing-function: ease-out;
    transform: translateY(0);
}
}
@keyframes contentAnim {
0% {
    transform: scale(0);
    transform-origin: 50% 0%;
}

100% {
    transform: scale(1);
    transform-origin: 50% 0%;
}
}
