@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=LEMON+MILK&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1707209857286-62b9be358128?q=80&w=2118&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin: 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content {
    position: relative;
    color: black;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 200px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.btn-linktree {
    display: inline-block;
    padding: 12px 25px;
    font-size: 15px;
    color: #1063ae;
    border: 1px solid #1063ae;
    border-radius: 30px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(16, 99, 174, 0.3);
    margin-top: 10px;
}

.btn-linktree:hover {
    background-color: #1063ae;
    color: white;
    box-shadow: 0px 6px 15px rgba(16, 99, 174, 0.5);
}

p {
    font-size: 16px;
    margin: 10px 0;
}

.link, .contact-info {
    color: #1063ae;
    font-weight: bold;
    text-decoration: none;
}

.link:hover, .email:hover {
    color: #63b3ed;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 5px 0;
}

.icon {
    width: 25px;
    height: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 20px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.2);
}

@media (max-width: 640px) {
    .content {
        max-width: 90%;
        padding: 15px;
    }
    
    .logo {
        width: 150px;
    }
    
    .social-icons {
        gap: 20px;
    }
}