/* Ensure the html and body take the full height of the page */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    display: flex;
    flex-direction: column;
}

/* Header styling */
.header {
    width: 100%;
    padding: 10px;
    background-color: #444;
    color: white;
    text-align: left;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex; /* Horizontal layout */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Vertically align items */
}

/* Container for Links */
        .nav-links {
            display: flex; /* Horizontal layout for links */
            gap: 20px; /* Space between links */
        }

       /* Icon Links */
        .icon-link {
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.2s, color 0.2s;
        }

        /* Hover Effects */
        .icon-link:hover {
            transform: scale(1.2);
        }

        /* Specific GitHub Icon Color */
        .icon-link.github:hover {
            color: #6e5494; /* GitHub purple */
        }

        /* Specific LinkedIn Icon Color */
        .icon-link.linkedin:hover {
            color: #0077b5; /* LinkedIn blue */
        }

        /* Instagram Specific Hover Color */
        .icon-link.instagram:hover {
            color: #e1306c; /* Instagram pink */
        }

/* Home button styling */
.home-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #a0c11f;
    background-color: transparent;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 50%;
    font-family: Raleway;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.home-button:hover {
    background-color: #7e981a;
    color: white;
    border-color: #7e981a;
}

/* Content area takes all available space except footer */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Footer styling */
.footer {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #d3d3d3;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

body {
    font-family: Aleo, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    color: #2b2bae;
}

h1 {
    margin: 0 0 20px;
    font-size: 4rem;
}

p {
    margin: 10px 0 20px;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Button styling */
a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a0c11f;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-family: Raleway;
    font-size: 1.2rem;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

a.button:hover {
    background-color: #7e981a;
}
