@charset "UTF-8";
body{
    background: linear-gradient(to bottom,#efe, #cfc 50%, #efe);
}
.text-left{
    text-align: left;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.css-grid li {
    color: #404040;
    border-left: solid 6px green;
    border-bottom: solid 2px #dadada;
    background: #bfb;
    margin: 5px 0px 5px;
    line-height: 1.5;
    padding: 0.5em;
    list-style-type: none;
    font-weight: bold;
}

.css-grid {
    display: grid;
    grid-template-columns: 312px 312px;
    grid-row-gap: 20px;
    grid-column-gap: 10px;
    justify-content: center;
    width: 90%;
    margin: 0 auto 0;
}

.special-award {
    grid-column-start: span 2;
}

@media (max-width: 600px){
    .css-grid{
        grid-template-columns: 312px;
        width: 100%;
    }
    .special-award {
        grid-column-start: span 1;
    }
    ul.main-ul{
        margin: 0;
        padding: 0;
    }
    
}
