:root {
    --black-bg: #141414;
    --white-text: #bab7bb;
    --black-black: #000000;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black-bg);
    color: var(--white-text);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 90%;
    position: relative;
}

.content {
    max-width: 60%;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 5px var(--white-text);

}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 0 2px var(--white-text);

}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    padding: 15px;
    background-color: var(--black-bg);
    color: var(--white-text);
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 0 20px var(--white-text);
    border-radius: 30px;
}

.buttons a:hover {
    background-color: var(--white-text);
    color: var(--black-bg);
    transform: scale(1.1);
}

.buttons i {
    margin-right: 10px;
}

img {
    max-width: 40%;
    border-radius: 10px;
}

.github {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start; /* Align items to the start of the flex container */
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    width: 17vw;
    height: 10vh;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}

.github:hover {
    /* box-shadow: 0 0 30px #bab7bb; */
    transform: scale(1.2);
    
}

.github-icon1,
.github-icon2 {
    color: var(--white-text); /* Set the color for SVGs */
    filter: invert(88%) sepia(4%) saturate(0%) hue-rotate(179deg) brightness(99%) contrast(98%); /* Ensures consistent color */
    width: 100%; /* Adjust the width as needed */
    height: 85%; /* Maintain the aspect ratio */
}

.github-icon2 {
    svg {
        color: var(--white-text);
    }
    margin-right: 0;
}

.footer {
    text-align: center;
    padding: 0;
    position: absolute;
    left: 30%;
    right: 30%;
    bottom: 0%;
    width: 40%;
    box-sizing: border-box; /* add this property */
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.footer p {
    margin: 0;
    font-size: 0.7rem;
}