/* styles.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

/* Centering the container perfectly */
.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Added subtle shadow for depth */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Layout for links */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* Link buttons */
.link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

/* Icons inside links */
.link img {
    width: 40px;
    height: 40px;
}

/* Hover effects */
.link:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05); /* Slight scaling effect on hover */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Soft glow effect */
}

