/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
     background-image: url("fundo.jpg");
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.header {

    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.profile-img1 {
    width: 190px;
    object-fit: cover;
}
.profile-img2 {
    width: 170px;
    object-fit: cover;
}
.profile-img3 {
    width: 250px;
    object-fit: cover;
}

.name {
    font-size: 1.8em;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.description {
    font-size: 0.9em;
    color: #666;
    margin: 10px 0;
}

.social-icons {
    margin: 15px 0;
}

.icon {
    color: #fff;
    background: #3b5998;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
}

.icon:hover {
    opacity: 0.8;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff0a8a;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    transition: transform 0.2s;
}

.link:hover {
    transform: scale(1.02);
}

.link .emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.link i {
    color: #666;
    font-size: 1.2em;
}

@media screen and (max-width: 480px) {
    .header {
        padding: 15px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 1.5em;
    }

    .description {
        font-size: 0.8em;
    }

    .link {
        padding: 10px;
        font-size: 0.9em;
    }
}
