      
.container {
    display: grid;
    grid-template-columns: 200px repeat(3, 100px) 200px;
    gap: 10px 20px;
    padding: 0px;
    height: 300px;
    width: 800px;
    background-color: lightblue;
    }
        .item {
            background-color: #EDAFB8;
            padding: 0px;
            text-align: center;
         
         
        }
        .small { font-size: 30px; }
        .medium { font-size: 50px; }
        .large { font-size: 60px; }