/* Banner - CSS */

.banner-img
{
    grid-row: 1;
    grid-column: 1/span 3;
    z-index: 1;
    align-self: center;
    justify-self: center;
    width: 100%;
}

#banner-cover
{
    grid-row: 1;
    grid-column: 1/span 3;
    z-index: 2;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-color: #000; 
}

#banner-content
{
    grid-row: 1;
    grid-column: 2;
    z-index: 3;
    align-self: end;
    margin-bottom: 32px;
    justify-items: start;
    display: grid;
}

#banner .box-top
{
    grid-template-columns: 16px max-content 32px;
}

#banner .box-top h2
{
    font-size: 32px;
    margin-top: -22px;
}

#banner p
{
    color: #ccc;
}

#banner .box-content
{
    padding: 8px 32px 16px;
}