body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #111;
    color: #eee;
    margin: 0;
    padding: 20px;
}

a {
    color: #a2beff;
    text-decoration: none;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

body section {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

body section article {
    background-color: #222;
    border: 2px solid #555;
    padding: 15px;
    border-radius: 10px;
}

footer {
    width: fit-content;
    margin: 0 auto;
}
footer ul {
    padding: 0;
    display: flex;
    width: fit-content;
}

footer ul li {
    list-style-type: none;
    padding: 10px;
}

footer ul li svg {
    width: 50px;
    height: 50px;
    transition: color 0.2s ease;
}

footer ul li svg:hover {
    color: green;
    
}

/* body section article:first-of-type {
    grid-column-start: 1;
    grid-column-end: 3;
}

body section article:nth-of-type(4) {
    grid-column-start: 2;
    grid-column-end: 4;
} */