#verse-day {
    width: 100%;
    height: auto;
    padding: 0 15px;
    transition: .5s;
    position: relative;
    background-image: linear-gradient(to bottom, #cfd9df 0%, #e2ebf0 100%);

    .container {
        top: -60px;
        width: 700px;
        margin: auto;
        display: flex;
        padding: 20px;
        transition: .3s;
        max-width: 100%;
        position: relative;
        align-items: center;
        border-radius: 30px;
        flex-direction: column;
        background-color: #ffffff;
        box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.1);

        .title {
            font-size: 25px;
            text-align: center;
            margin-bottom: 10px;
        }

        .text {
            text-align: center;
            margin-bottom: 10px;
        }

        .book-chapter-verse {
            font-size: 20px;
            text-align: center;
            margin-bottom: 10px;
        }

        .btn-devotional {
            font-size: 15px;
            font-weight: 300;
            padding: 8px 14px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--color-level3);
            background-color: var(--color-level1);
            box-shadow: -2px 2px 4px 0px rgba(0, 0, 0, 0.3);
        }

        .btn-devotional:hover {
            background-color: #2e6ea7
        }

        .btn-devotional i {
            margin-left: 10px;
        }
    }
}

#verse-day {
    .container:hover {
        box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.3);
    }
}

@media(width < 700px){
    #verse-day {
        .text {
            font-size: 0.8em;
        }
    }
}