/*******************************
Skapare: Fredrik Wendel
Datum: 2016-03-05
Senast uppdaterad: E/T
*******************************/

html, body{
    height: 100%;
    margin: 0;
    background-color: #000000;
    color: #AAAAAA;
}


#wrapper{
    height: 100%;
    width: 90%;
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid white;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
}

header{
    text-align: center;
}

main{
    background-color: #101010;
    flex-grow: 1;
    
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    overflow-y: hidden;
}

.box{
    background-color: #252525;
    width: 45%;
    height: 90%;
    align-self: center;
    overflow-y: auto;
    word-break: break-all;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

li{
    background-color: #101010;
    width: 100%;
    margin: auto;
}

li:nth-child(even){
    background-color: #202020;
}

li:hover{
    background-color: #666620;
    cursor: pointer;
}


footer{
    text-align: center;
}