@import url('profile.css');
@import url('devlog.css');
@import url('gallery.css');
@import url('header.css');
@import url('content.css');

body{
    background-color: #2F3037;
    background-image: linear-gradient(#2F3037, #16161b);
}

p{
    font-family: "Lucida Console", "Courier New", monospace;
    color: white;
    padding: 0;
    font-size: 14px;
}

p.role{
    font-size: 24px;
    margin-top: 4px;
}

.content p{
    line-height: 1.3;
}

.quote {
    font-style: italic;
}

a{
    font-family: "Lucida Console", "Courier New", monospace;
}

h1, h2, h3, h4, h5, h6 {
    font-family: monospace;
    color: white;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 12px; }

.devlog a{
    color: rgb(255, 255, 255);
    font-size: 16px;
    display: block;
    line-height: 2.2;
    font-weight: bold;    
}

.devlog a:hover{
    color: #b8b8b8;
}

.navigation a{
    color: rgb(255, 255, 255);
    font-size: 14px;
    display: block;
    text-decoration: none;
    line-height: 2.2;
    font-weight: bold;
}

.navigation a:hover{
    color: #b8b8b8;
}

.mainContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

.sidebar{
    max-width: 95px;
    width: 95px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 25px;
    padding-left: 25px;

    background-color: #2F3037;
    border-width: 1px;
    border-style: solid;
    border-color: white;

    flex: 1;
}


.content{
    width: 550px;
    min-height: 600px;
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 80px;
    padding-left: 60px;

    margin-left: -4px;

    background-color: #2F3037;
    border-width: 1px;
    border-style: solid;
    border-color: white;
}

.contentContainer{
    display: flex;
    flex-direction: row;

    margin-bottom: -1px;
}

.footer{
    width: 692px;
    height: 70px;
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 80px;
    padding-left: 60px;

    background-color: #2F3037;
    border-width: 1px;
    border-style: solid;
    border-color: white;
}