/* CSS Reset */
    /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure, 
    footer, header, hgroup, menu, nav, section {
        display: block;
    }
    body {
        line-height: 1;
    }
    ol, ul {
        list-style: none;
    }
    blockquote, q {
        quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
/* /CSS Reset */

/* Basic */
    body{
        background-color: grey;
        background-image: url("background.jpg");
        background-size: cover;
        background-position: 0px -100px;
        color: #fafafa;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .container{
        width: 800px;
        background-color: #0a0a0a;
        margin: 30px auto;
        /* border: 10px solid #fafafa; */
        border: 1px solid #262626;
        /* border-left: 1px solid #737373; */
    }
/* /Basic */

/* Navbar */
    nav{
        padding: 30px 50px;
    }

    .logo{
        font-size: 48px;
        font-weight: bold;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        /* padding: 30px 50px; */
    }

    .nav-list{
        padding: 20px 0px 10px;
    }

    .nav-list li{
        display: inline-block;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin-right: 15px;
        font-size: 16px;
    }

    .nav-list a{
        text-decoration: none;
        color: #a3a3a3;
    }

    .nav-list a:hover{
        color: #e5e5e5;
    }
/* /Navbar */

/* Hero */
    .hero{
        height: 300px;
        background-size: cover;
        background-position: center;
        background-image: url(hero.jpg);
        border-top: 1px solid #7dd3fc;
        border-bottom: 1px solid #6ee7b7;
    }
/* /Hero */

/* Article */
    .article{
        padding: 30px 50px;
    }

    /* Header */
        .article .header .title{
            font-size: 28px;
            font-weight: bold;
        }

        .article .header .author{
            font-size: 13px;
            padding: 10px 0 30px;
        }

        .article .header .author a, footer p a{
            text-decoration: none;
            color: #f43f5e;
        }

        .article .header .author a:hover, footer p a:hover{
            color: #fb7185;
        }
    /* /Header */

    /* Content */
        .content p{
            font-size: 16px;
            line-height: 20px;
        }
    /* /Content */
/* /Article */

/* Footer */
    footer{
        padding: 10px 0px 5px;
        border: 1px solid #262626;
    }

    footer p{
        padding: 0px 10px 10px;
        text-align: center;
    }
/* /Footer */

/* HP */
.hp {
    height: 100vh; /* Let the height be determined by the content */
    margin: auto;
    align-items: center;
    display: flex;
    background-color: #0a0a0a;
  }
  
  .hp p {
    padding: 0px 20px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
  }
/* /HP */