/* File: styles.css - LocalHQ */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, verdana, sans-serif;
}
body {
    background-color: #000;
}

/* Style the header */
header {
    background-color: #000;
    padding: 0;
    margin: 0;
    text-align: center;
    color: grey;
}

/* Navigationbar Style */
#navibox {
    width: 100%;
    height: 95vh;
    background-image: url(/media/background/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
nav{
    width: 100%;
    line-height: 30px;
    font-size: 15px;
    color: grey;
}
nav ul{
    float: right;
    margin-top: 5px;
    margin-right: 20px;
}
nav ul li{
    list-style-type: none;
    display: inline-block;
}
nav ul li:hover{
    background-color: #088;
}
nav ul li a{
    text-decoration: none;
    color: grey;
    padding: 5px;
}

/* Articlebox */
#artbox {
    position: fixed;
    top: 250px;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
}

/* Style the articles */
article {
    float: left;
    padding: 20px;
    width: 100%;
    color: #ccc;
    background-color: #000;
    border-radius: 5px;
}

/* some Style templates for articles, etc. */
div.first {
    opacity: 0.25;
}

div.second {
    opacity: 0.5;
}

div.third {
    opacity: 0.75;
}

/* Style the Footer */
footer {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    background-color: #000;
    font-size: 12px;
    color: grey;
}

/* End of File */
