body {
    font-family: 'Arial', sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #f7f7f7;
    background-color: #f0f0f0;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

html {
    height: -webkit-fill-available;
}

.container {
    width: 90%;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile {
    text-align: center;
    margin-bottom: 25px;
  
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-description {
    font-size: 14px;
    color: #e0d9d9;
    margin-bottom: 20px;
    padding: 0 15px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}

.link-item {
    background-color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 14px;
}

.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.link-item svg {
    margin-right: 10px;
}

.whatsapp {
    background-color: #25D366;
    color: white;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.website {
    background-color: #0077B5;
    color: white;
}

.custom {
    background-color: #FF5722;
    color: white;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #999;
} 