footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(16, 82, 65);
    color: white;
}

footer div {
    display: flex;
    flex-direction: column;
    justify-content: first baseline;
    gap: 10px;
}

footer div h1 {
    font-size: 20px;
}

footer div p,
footer div a {
    font-size: 17px;
}

footer div a {
    text-decoration: none;
    color: white;
}

.list {
    flex-direction: row;
    justify-content: center;
}

footer div:nth-child(1) {
    align-items: start;
}

footer div:nth-child(2) {
    align-items: center;
    text-align: center;
}

footer div:nth-child(3) {
    align-items: end;
}

@media (max-width: 1024px) {
    footer div h1 {
        font-size: 18px;
    }

    footer div p,
    footer div a {
        font-size: 16px;
    }

    .list img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    footer div {
        gap: 0;
    }

    footer div h1 {
        font-size: 16px;
    }

    footer div p,
    footer div a {
        font-size: 14px;
    }

    .list{
        gap: 10px;
    }

    .list img {
        width: 20px;
        height: 20px;
    }
}