body {
    font-family: sans-serif;
    /* background-color: #e0f7fa; */ 
    background-image: url('/WhatsApp Image 2025-06-02 at 6.56.09 PM.jpeg'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    background-attachment: fixed; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 52, 74, 0.2); 
    text-align: center;
    width: 100%;
    max-width: 500px;
    border-top: 5px solid #00bcd4; 
}

h1 {
    /* color: #004d40; */ 
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
}

.social-link i {
    margin-right: 10px;
    font-size: 1.3em;
}

.facebook {
    background-color: #3b5998;
}

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

.tiktok {
    background-color: #000;
}

.social-link:hover {
    transform: translateY(-3px); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); 
}

.facebook:hover {
    background-color: #344e86;
    box-shadow: 0 6px 12px rgba(59, 89, 152, 0.3); 
}

.instagram:hover {
     background: linear-gradient(45deg, #d8852d 0%,#ce5b34 25%,#c4223b 50%,#b81f5e 75%,#aa167a 100%);
     box-shadow: 0 6px 12px rgba(228, 64, 95, 0.3); 
}

.tiktok:hover {
    background-color: #222;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
}