* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: sans-serif;
    background: #a09fa0;
    min-width: 100%;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.container h3 {
    margin: 30px 0;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.like-button {
    color: white;
    border: none;
    font-size: 1.3em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    width: 350px;
    height: 80px;
    position: relative;
}

.row {
    gap: 5px;
    display: inline-flex;
    position: absolute;
    top: 30%;
    left: 30%;
}

.heart-icon {
    height: 35px;
    width: 35px;
}

span {
    display: flex;
    align-items: center;
}

.like-button:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.7);
    transform: translateY(-3px);
}

.like-button:active {
    transform: scale(0.95);
}

.like-button.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.like-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
}

.like-button.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.like-button.github {
    background: linear-gradient(135deg, #333 0%, #000 100%);
}

.like-button.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.like-button.email {
    background: linear-gradient(135deg, #34A853 0%, #2d8e47 100%);
}

.like-button.portifolio {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.container-bitcoin-address-text {
    gap: 10px;
}

.container p {
    color: #333;
    font-size: 1.1rem;
    margin: 30px;
    text-align: center;
}

@media(max-width: 500px) {
    h3 {
        margin-top: 20px;
    }

    .like-button{
        width: 280px;
    }

    .text {
        font-size: 1.2rem;
    }
}


