:root{
    --red: #ef476f;
    --yellow: #ffd166;
    --green: #06d6a0;
    --blue: #118ab2;
    --dark: #073b4c;
    --light: #eeeeee;
}

*{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html{
    height: 100%;
    min-height: 100%;
}

body{
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.limiter{
    width: 100%;
    max-width: 70vh;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    flex: 1;
}

.titlelogo{
    width: 50%;
    display: flex;
    margin: 8% auto;
}

header > h1{
    text-align: center;
    margin: 8%;
    font-size: calc(3.5vh + 2vw);
}

.titlelinks{
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mission-ticker {
    margin-bottom: 10px;
}

.menu-button-container {
    width: 100%;
    display: flex;
}

.menu-link-container {
    display: none;
    margin: 2vw;
    justify-content: center;
    gap: 15px;
}

a{
    color: white;
    font-size: x-large;
    font-weight: bold;
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

a > h2{
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 2555, 0.1);
    font-size: 5.5vw
}

.header{
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: left;
}

.header:active, .footer:active{
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.1s;
}

.card{
    width: 85%;
    margin: 4vh auto 0 auto;
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    border-radius: 16px;
}

.logo{
    height: 90%;
    margin: 0 3%;
}

.headlines{
    margin-right: 3%;
}

h1, h2{
    color: white;
    margin: 0.8vh 0;
    text-shadow: 0 0 10px black;
}

h1{
    font-size: calc(2vh + 1vw);
}

h2{
    font-size: calc(1.5vh + 1vw);
}

main{
    flex: 1;
}

form{
    padding: 0.1px;
}

.field{
    margin: 5%;
}

.bub{
    display: flex;
}

#einsatznr_end_container, 
#datum_end_container,
#previewContainer, 
#loadingContainer,
#errorContainer{
    display: none;
}

#textbox{
    background-color: white;
    font-size: medium;
    margin: 5% 5% 2%;
    padding: 3%;
    border: 1px solid black;
    border-radius: 8px;
}

.footer{
    height: 40px;
    font-size: small;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px black;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 4vh auto 4vh auto;
    padding: 0.5em 0;
    align-self: flex-end;
}