*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #333333;
    font-family: "Chivo Mono", 'Courier New', Courier, monospace;
    background-color: #f2f2f2;
}

/* hi if you're somehow reading this 
and are wondering why the heck there's like, so much here -- 
i took the css from a school project i did a little while ago 
and i am too dang lazy to go back and clean it up
*/

.container{
    width: 80%;
    margin: 0 auto;
}

header{
    margin: 20px 20px 20px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

div.title{
    flex: 1;
    font-size: x-large;
}

h1 a{
    text-decoration: none;
    transition: all 0.25s ease-in;
}

h1 a:hover{
    background-color: #333333;
    color: #f2f2f2;
    border: #333333 solid 5px;
    border-radius: 10px;
}

intro, footer{
    margin-bottom: 10px;
}

p{
    line-height: 1.75em;
    margin-bottom: 10px;
}

hr{
    width: 85%;
    border: solid 1px #333333;
    margin-bottom: 10px;
}

div.cycle-slideshow{
    margin-bottom: 2em;
    border: solid #333333 2px;
    border-radius: 10px;
    box-shadow: 10px 10px #333333;
    overflow: hidden;
}

h2, h3, h4{
    margin: 10px 0;
    font-style: italic;
    font-weight: normal;
}

div.cycle-slideshow{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}

.cycle-pager { 
    text-align: center; 
    width: 100%; 
    font-family: "Chivo Mono", 'Courier New', Courier, monospace; 
    font-size: 50px;  
    cursor: pointer;
}

.cycle-pager span{
    color: transparent;
    -webkit-text-stroke: 1px #333333;
    transition: color 0.25s linear;
}

.cycle-pager, .cycle-pager-active, .cycle-pager span:hover{ 
    color: #333333;
}

article{
    width: 100%;
    padding: 1em;
    justify-content: space-around;
    text-align: left;

}

h4{
    margin-bottom: 10px;
}

h3{ 
    font-size: larger;
    margin-bottom: 15px;
}

img{
    width:100%;
    height: auto;
    border-radius: 8px;
}

footer{
    font-style: italic;
    line-height: 1.75em;
}

@media screen and (min-width:681px) and (max-width: 920px){
    div.title{
        font-size: large;
    }

    nav{
        border: none;
        box-shadow: none;
    }

    li {
        width: 90%;
        border: solid #333333 2px;
        border-radius: 6px;
        box-shadow: 6px 6px #333333;
        overflow: hidden;
        margin: 10px; 
        font-size: medium;
    }

    h4, p{
        text-align: left;
    }
    

    .bio img{
        margin-bottom: -0.5em;
    }

    .entry{
        margin: 0 1em;
        display: flex;
        flex-direction: column;
    }

    .entry p{
        width: 100%;
    }

    .content{
        width: 100%;
    }
}

@media screen and (min-width:200px) and (max-width: 680px){
    .logo{
        max-width: 100px;
    }

    header{
        margin: 0;
    }

    div.title{
        font-size: medium;
    }
    
    ul{
        margin: 0;
        padding: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
    }
    nav{
        border: none;
        box-shadow: none;
    }
    li {
        width: 90%;
        border: solid #333333 2px;
        border-radius: 6px;
        box-shadow: 6px 6px #333333;
        overflow: hidden;
        margin: 10px; 
    }
    nav a {
        margin-left: 20px;
    }

    h4, p{
        text-align: left;
    }

    .archive{
        display: flex;
        flex-direction: column;
    }

    .entry{
        margin: 0 1em;
        display: flex;
        flex-direction: column;
    }

    .entry p{
        width: 100%;
    }

    .bio img{
        float: none;
    }

    .cycle-pager{
        font-size: 40px;
    }

    .content{
        width: 100%;
    }
}

