#container {
    display: flex;
    justify-content: center;   
    align-items: center;       
    gap: 20px;
    flex-wrap: wrap;           
    max-width: 1200px;         
    margin: 0 auto;            
    padding: 20px;
}

.section {
    background-color: lightgray;
    width: 300px;
    height: 310px;
    border-radius: 20px;
    flex: 1 1 300px;          
}

h1 {
    text-align: center;
}

h2 {
    color: rgb(0, 0, 0);
}