/* General Styles */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Inter", sans-serif;
}

/* Canvas Background */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Main Content */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #000;
    display: flex;
    top: 30%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

/* Profile Info - image and name on the same line */
.profile-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Image Styling */
.profile-picture {
    width: 250px;
    /* Adjust size as needed */
    height: 250px;
    border-radius: 50%;
    /* Makes the image round */
    object-fit: cover;
    /* Ensures the image covers the circle */
    margin-right: 20px;
    /* Space between the image and the name */
}

/* Typography */
h1 {
    font-size: 4rem;
    margin: 0;
    /* Remove default margin for the heading */
}

p {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Particles Background */
#particles-js {
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 3;
}

/* Social Links Container */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20%;
    z-index: 2;
    position: relative;
}

/* Social Icon */
.social-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Enlarging Image */
.social-links a:hover .social-icon {
    transform: scale(1.5);
}

/* Text that appears on hover */
.social-links a {
    position: relative;
}

.social-links a::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

/* Unique text for each icon */
.social-links a.github::after {
    content: "Some Code and Projects";
}

.social-links a.thm::after {
    content: "Follow my Cybersecurity Journey!";
}

.social-links a.linkedin::after {
    content: "Connect with Me!";
}

.social-links a.chess::after {
    content: "Let's Play a Game!";
}

/* Show text when hovered */
.social-links a:hover::after {
    opacity: 1;
}