/**
 * Theme Name: Random Verse Timber
 * Theme URI: https://github.com/timber/learn-timber-theme/
 * Description: A minimal theme that serves as an entry point for learning about Timber.
 * Author: The Timber team and you!
 */

body{
    background: url("/wp-content/themes/random-verse/assets/images/the-cleveland-museum-of-art-Be7wsIk5XlA-unsplash.jpg");
    color: #333;
}

a{
    color: brown;
}

article {
    padding-top: 100px;
}

.verse-container{
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.verse-title{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: grey;
}

.verse-content{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 35px;
    font-weight: 300;
    padding-bottom: 350px;
}
.verse-content p:last-child {
    color: #777;
    font-style: normal;
    font-size: 20px;
    margin-top: -25px;
}

.footer-credits {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
}
.btn-container{
    text-align: center;
    position: fixed;
    bottom: 80px;
    width: 100%;
}

.btn {
    background: brown;
    padding: 10px 25px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    min-width: 80px;
    display: block;
    width: 100px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 800px) {

    .verse-content {
        font-size: 50px;
    }

    .btn-container{
        bottom: 200px;
    }
}
