* body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    text-align: center;
    background-color: #000016;
    color: rgb(167, 167, 167);
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
button {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: red
}

.logo {
    display: block;
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin: 20px auto;
    border-radius: 79%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.062), rgba(228, 1, 107, 0.158) 60%, transparent 75%);
    padding: 8px;
    box-sizing: border-box;
}

ul {
    list-style: none;
    padding: 80px;
    text-align: center;
}

div {
    text-align: center; 
    color: rgb(155, 154, 154);
}

button {
    width: min(320px, 85%);
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    background: linear-gradient(135deg, #34d749, #1f8f34);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(52, 215, 73, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 24px rgba(52, 215, 73, 0.45);
    filter: brightness(1.08);
}

button:active {
    transform: translateY(0);
}

button img {
    width: 24px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

h2{
    padding: 20px;
}
h3{
    padding: -29px;

}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    header {
        padding: 10px;
    }

    h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
        line-height: 1.3;
    }

    .logo {
        width: min(85vw, 320px);
        margin: 15px auto;
    }

    ul {
        padding: 20px 12px;
    }

    h2,
    h3,
    p {
        padding-left: 12px;
        padding-right: 12px;
    }

    button {
        width: min(90vw, 320px);
        padding: 14px 18px;
        font-size: 14px;
    }

    button img {
        width: 20px;
    }
}