body {
    font-family: "Libre Caslon Text", Georgia, serif;
}
p {
    line-height: 1.5em;
}
h1{
    text-align: center;
}
h2{
    line-height: 2em;
}

a { 
    text-decoration: none; /* Sets default link appearance to no underline */
    color: forestgreen;
}

blockquote {
    font-weight: bold;
    margin-left: 0;
}

.mobile-only {
    display: none;
}

a:hover {
    text-decoration: underline; /* Underlines link when mouse hovers */
}

.post-link {
    color: forestgreen;
}

header { /* Top navigation bar */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
}

header hr{
    padding: 0;
    margin: 0;
    border: none;
    height: 2px;
    background-color: black;
}

nav a { /* Top navigation bar links */
    display: inline-block;
    color: black;
    margin: 0 1.5em 0 1em;
}

.gig-tix {
    color: forestgreen;
    text-decoration: underline !important;
}


@media only screen and (max-width: 572px) { /* Adjustments for mobile screens */
    body {
        font-size: 0.75em;
    }
    #title {
        font-size: 1.5em;
    }
    #logo {
        display: block;
    }
    header {
        text-align: center;
    }
    h2 {
        font-size: 1.1em;
    }

    .mobile-only {
        display: block;
    }
    
    nav {
        padding-bottom: 10px;
    }

    .photoblock {       
        display: inline-block;

    }
    .photoblock div {
        height: 200px !important;
    }

    .photoblock div img {
        height: 180px !important;
    }


}

@media only screen and (min-width: 1800px) { /* Adjustments for big monitors */
    body {
        font-size: 150%;
    }
    .content {
        top: 200px;
    }
}


.pages{ /* Gives bold text and green colour to non title links currently deleted*/
    
}

#title {
    font-weight: 700;
}

.content {
    position: relative;
    top: 80px;
    margin: 20px;
    padding-bottom: 80px;
}

#image-section {
    display: flex;
    justify-content: center;
}

#fp-posts {
    margin-bottom: 20px;
}

#mmcover {
    width: 20%;
    min-width: 30px;
    max-width: 1000px;
    margin-top: 30px;
    opacity: 70%;
}

ul {
    line-height: 3;
}

.aoty-li {
    color: forestgreen;
}

.intro {
    text-align: center;
}

.aoty-img {
    flex: 1 1 0;         /* all images grow and shrink equally */
    width: 0;            /* necessary to distribute width evenly in flex */
    height: auto;        /* preserves aspect ratio */
    object-fit: cover;   /* crops to fill flex item */
}

.photoblock {
    display: -webkit-flex;    /* older Safari/Chrome */
    display: flex;
    flex-wrap: nowrap;
}

.photoblock div {  
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 400px;
}

.photoblock div img {
    width: 100%;       
    height: 100%;
    max-height: 25rem;  
    opacity: 0.8;
    object-fit: contain;
    height: 400px;
}


