/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body{
    margin:30px;
    background-color:#0c0c1b;
    color:white;
    font-family:Verdana, Geneva, sans-serif;
    line-height:1.6;
}

#wrapper{
    max-width:1100px;
    margin:auto;
    border:2px solid #333;
    background:#181818;
}

header{
    background:#0c0c1b;
    padding:30px;
    border-bottom:2px solid #333;
}

header h1{
    margin:0;
    color:#7dfc9d;
    font-family:Courier New, monospace;
    font-size:32px;
}

header h2{
    margin:0;
    color:#7dfc9d;
    font-family:Courier New, monospace;
    font-size:11px;
}

header p{
    color:#9d9d9d;
    margin-top:8px;
}

.container{
    background: none;
    display:flex;
}

aside{
    width:260px;
    padding:25px;
    background:#151515;
    border-right:2px solid #333;
}

aside h3{
    color:#7dfc9d;
    border-bottom:1px solid #444;
    padding-bottom:5px;
    font-size:16px;
}

aside ul{
    list-style:none;
    padding:0;
}

aside li{
    margin:10px 0;
}

aside a{
    color:#ddd;
    text-decoration:none;
}

aside a:hover{
    color:#7dfc9d;
}

main{
    flex:1;
    padding:35px;
}

section{
    margin-bottom:45px;
}

h2{
    color:#7dfc9d;
    font-family:Courier New, monospace;
}

.box{
    border:1px solid #333;
    background:#0c0c1b;
    color:#9d9d9d;
    font-size:11px;
    padding:20px;
}

.badge{
    display:inline-block;
    padding:4px 8px;
    margin:4px;
    border:1px solid #555;
    font-size:12px;
    font-family:Courier New;
}

footer{
    position:relative;
    padding:20px;
    text-align:center;
    border-top:2px solid #333;
    color:#777;
    background:#151515;
}


