@charset "UTF-8";

.topimg
{
    height: 100px;
    background: #e1f3f8;
}

.topimg h1
{
    top: 15%
}

.container
{
    margin: 100px auto;
    max-width: 700px;
}

section
{
    margin-bottom: 30px;
}

section h2
{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid rgb(96, 63, 28);
    margin-bottom: 15px;
}

.rev
{
    display: flex;
    flex-wrap: wrap;

}

.rev a
{
    display: flex;
    align-items: center;
    width: 48%;
    height: 90px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    margin-bottom: 30px;
    margin-right: 4%;
}

.rev a:nth-child(2n)
{
    margin-right: 0;
}

.rev a .img
{
    width: 100px;
    height: 90px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.rev a .img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rev a .txt
{
    width: calc(100% - 100px);
    padding-left: 1em;
}

@media screen and (max-width: 900px)
{
    .topimg h1
    {
        top: 30%
    }

    .container
    {
        margin: 50px auto;
    }

    section
    {
        margin-bottom: 20px;
    }

    .rev a
    {
        width: 100%;
        height: 60px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .rev a .img
    {
        width: 100px;
        height: 60px;
    }

    section h2
    {
        font-size: 16px;
        border-bottom: 1px solid rgb(96, 63, 28);
    }
}