* {
    margin: 0;
    padding: 0;
}

/*Titel*/
header {
    text-align: center;
    margin: 50px 0 0 0;
}

/*Navigation*/

#navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.navList {
    line-height: 50px;
    width: 200px;
    text-align: center;
    margin: 40px 10px 40px 10px;
}

/*Content*/
#grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, 33.333%);
}

#content {
    grid-column: 2 / 3;
}

/*home*/
#twitch-embed {
    margin-bottom: 10px;
}

.template-entry {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.template-entry h3 {
    line-height: 60px;
}

.entry {
    margin: 5px;
    display: flex;
    flex-direction: column;
}

/*projects*/
#repos, #ownProjects {
    grid-column: 2 / 3;
}

.repo {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 5px;
}

.repo h3 {
    margin: 5px;
    line-height: 40px;
}

.repo div {
    margin: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/*about me*/
#information {
    display: flex;
}

/*Footer*/
#footer {
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
}

.changer {
    margin: 0 10px 0 10px;
}

