@import url('ShortStack-Regular.ttf');
body {
  font-family: 'Short Stack', cursive;
  color: darkgray;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container{
    width: 80%;
    padding: 20px;
    background-color: white;
}

header{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

hr {
    margin: 20px 0;
}

h1{
    height: 100%;
    margin: auto;
    font-size: 65pt;
}

.ul{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.foto{
    height: 170px;
}

.lebenslauf {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    gap: 20px;
}

.links{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rechts{
    width: 45%;
}

table {
    width: 100%;
}

h2{
    text-align: left;
    margin: 0;
    margin-bottom: 5px;
}

td{
    padding: 10px 0;
}

.tdate{
    min-width: 20%;
    font-weight: bold;
    padding-right: 10px;
}

a {
    text-decoration: none;
}

@media print{
    .container{
        width: 100%;
    }

    .doodle-border{
        border-style: none;
        border-width: 0;
    }

    body{
        margin: 0;
    }

    .foto{
        height: 100px;
    }

    h1{
        font-size: 46pt;
    }

    .links{
        gap: 0;
    }

    @page {
        size: A3;
    }

}