﻿.row {
    margin: 0 auto;
}

h2 {
    text-align: center;
}

.recent-images {
    height: 225px;
    object-fit: cover;
}

.coin-ctn {
    margin: 1rem;
    text-align: center;
    padding: 1rem;
    border-radius: .25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
}

.inline {
    display: inline-block;
}

.coin-desc {
    /*width: 250px;*/
}


.section-header {
    text-align: center;
    padding: 10px 0;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #333;
        position: relative;
        display: inline-block;
        padding-top: 10px;
    }



.coin-ctn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px 0;
}