@font-face {
    font-family: Poppins;
    src: url("fonts/Poppins-Regular.ttf"), url("fonts/Poppins-Bold.ttf"), url("fonts/Poppins-Italic.ttf");
}

* {
    margin: 0;
    padding: 0;
    font-family: Poppins, serif;
}

body {
    background-color: #36393e;
    height: 100%;
}

.header {
    background-color: #5b6dae;
    height: 10%;

    user-select: none;
    -ms-user-select: None;
    -moz-user-select: None;
    -webkit-user-select: None;
    color: white;
}

.header img {
    height: 75%;
    transform: translate(50%, 15%);
}

.header .headline {
    position: relative;
    left: 3em;
    bottom: 15%;
    font-size: 2em;
}

.content {
    min-height: 80%;
    margin: auto 10%;
}

.notFound {
    color: lightgray;
    font-size: 1.5em;
    text-align: center;
}

.content table {
    color: lightgray;
}

.content .applicationInfo {
    padding-top: 2em;
    padding-bottom: 2em;
    width: 80%;
    text-align: center;
}

.content .applicationAnswers {
    min-width: 100%;
    border-collapse: collapse;
    margin-bottom: 5em;
}

.content .applicationAnswers tr td {
    padding: 3px;
}

/* stripes */
.content .applicationAnswers tr:nth-child(odd) {
    background-color: #282a2d;
}

.content .applicationAnswers tr:nth-child(even) {
    background-color: #2f3135;
}

.content .applicationAnswers tr td:first-child {
    /* first column as small as possible */
    width: 5em;
    text-align: center;
}

/* format text in table */
.content .applicationAnswers tr:nth-child(n+2) td:last-child { /* every last child of the a td that isnt the first tr */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* gap between question and answer */
.content .applicationAnswers tr:nth-child(n+2) td:last-child :first-child {
    margin-bottom: 1em;
}


.footer {
    height: 10%;
    text-align: center;
    width: 100%;
    background-color: #282b30;
}

.footerContent {
    position: relative;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    color: lightgrey;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footerContent a {
    text-decoration: underline;
    color: lightgray;
    width: unset;
}