* {
    margin: 0;
    padding: 0;
}

/* #2D3250 */

body {
    background-color: #EFEFEF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 64px;
}

ul {
    list-style: none;
    padding: 0;
}

ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-inline: 32px;
    justify-content: center;
}

ul li img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(5598%) hue-rotate(352deg) brightness(101%) contrast(102%);
    transition: 0.1s ease-in-out;
}

ul li img:hover {
    filter: brightness(0) saturate(100%) invert(20%) sepia(47%) saturate(466%) hue-rotate(193deg) brightness(87%) contrast(96%);
    transition: 0.1s ease-in-out;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 64px;
    color: #FF5112;
    text-align: center;
}

img {
    width: 80%;
    max-width: 500px;
    height: auto;
}

footer {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #2D3250;
    text-align: center;
    margin-bottom: 32px;
}

a {
    text-decoration: none;
    color: #2D3250;
    transition: 0.1s ease-in-out;
    display: inline-block;
}

a:hover {
    color: #FF5112;
    transform: scale(1.1);
    transition: 0.1s ease-in-out;
}


@media screen and (max-width: 550px) {
    h1 {
        font-size: 48px;
    }
}