body {
    font-family: 'Poppins';
    background: rgb(234, 227, 227);
}

.image {
    display: flex;
    justify-content: center;
}

img {
    height: 20vw;
    width: auto;
    /* wartość 1.1 razy większa */
}

.headline,
.more,
p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    font-size: clamp(16px, 1.5vw, 32px);
}

.more {
    flex-direction: column;
}


.links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-decoration: none;
    color: black;
    display: flex;
}

.name {
    display: flex;
    align-items: center;
    margin-left: 8px;
}


li {
    display: inline-block;
    list-style: none;
    padding: 0 60px;
    width: auto;
}

a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 18px 30px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
    display: flex;
    text-align: center;
    cursor: pointer;
}

a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: #f5f5f5;
    color: #111;
}

a:active {
    transform: translateY(1px);/ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.soon {
    font-size: 2rem;
}

.facebook-icon {
    color: #1877F2;

}

.instagram-icon {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    img {
        height: 30vw;
    }

    .headline,
    .more,
    p {
        font-size: clamp(14px, 4vw, 20px);
        text-align: center;
    }

    .links li a {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .links {
        gap: 10px;
    }

    li {
        margin-bottom: 20px;
        margin-right: 30px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    img {
        height: 25vw;
    }

    .links li a {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .links {
        gap: 15px;
    }

    .headline h1 {
        text-align: center;
    }
}

@media (min-width: 1025px) {
    img {
        height: 20vw;
    }

    .links li a {
        font-size: 1.5rem;
        padding: 18px 30px;
    }

    .links {
        gap: 20px;
    }
}