:root {
    --dgreen: #143601;
    --mgreen: #538d22;
    --lgreen: #a9c691;
    --dgrey: #171717;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

html {
    background-color:var(--dgrey);
}

a {
    text-decoration: none;
    color: var(--lgreen);
}
a:hover,
a:focus {
    text-decoration: underline;
}

h2 {
    padding: 10px;
}

h3 {
    font-weight: 100;
}

/* LAYOUT CSS */
.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

#layout {
    padding: 0;
}

.header {
    text-align: center;
    top: auto;
    margin: 3em auto;
}

.sidebar {
    background: black;
    color: var(--mgreen);
}

.sidebar-block {
    margin-bottom: .7em;
}

.brand-title,
.brand-tagline {
    margin: 0;
}
.brand-title {
    text-transform: uppercase;
}
.brand-tagline {
    font-weight: 300;
    color: var(--lgreen);
}

.nav-list {
    margin: 0;
    padding: 10px 0 10px 0;
    list-style: none;
}
.nav-item {
    display: inline-block;
    *display: inline;
    zoom: 1;
}
.nav-item a {
    background: transparent;
    border: 2px solid var(--mgreen);
    color: var(--lgreen);
    margin-top: 1em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 85%;
}
.nav-item a:hover,
.nav-item a:focus {
    border: 2px solid black;
    text-decoration: none;
}

.content-subhead {
    text-transform: uppercase;
    color: #aaa;
    border-bottom: 1px solid #eee;
    padding: 0.4em 0;
    font-size: 80%;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.content {
    padding: 2em 1em 0;
}

.post {
    padding-bottom: 2em;
    background-color: var(--mgreen);
    border-radius: 25px;
    text-align: center;
}
.post-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 0.2em;
}
.post-avatar {
    border-radius: 50px;
    float: right;
    margin-left: 1em;
}
.post-description {
    font-family: Georgia, "Cambria", serif;
    color: #444;
    line-height: 1.8em;
}
.post-meta {
    color: #999;
    font-size: 90%;
    margin: 0;
}

.footer {
    text-align: center;
    padding: 1em 0;
    
    height: .5em;
    margin-top: -.5em;
    border-top: #eee solid 1px;
}
.footer a {
    color: var(--lgreen);
    font-size: 100%;
}
.footer .pure-menu a:hover,
.footer .pure-menu a:focus {
    background: none;
}

@media (min-width: 48em) {
    .content {
        padding: 2em 3em 0;
        margin-left: 25%;
    }

    .header {
        margin: 80% 2em 0;
        text-align: right;
    }

    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
    }

    .footer {
        text-align: center;
        overflow-wrap: normal;
    }
}

@media only screen and (max-width: 480px) {
    .inputText {
        display: inline !important;
    }

    button {
        margin: 0em 0 0 !important;
    }

    input {
        display: inline !important;
        margin-bottom: 0em !important;
    }
}

input {
    margin-right: .2em;
}


.button-success,
.button-secondary, .button-clear {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    padding: .6em;
    margin-left: .2em;
}

.button-success {
    background:var(--mgreen);
    }

.button-secondary {
    background: var(--dgreen);
}

.button-clear {
    background-color: black;
}

#tech
{
    margin: auto;
}

/* The Modal (background) */
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    min-height: 35px;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .pure-g p {
    letter-spacing: 0em;
}
