body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    width: 100%;
}

.navigation {
    background-color: #333;
    color: white;
    padding: 2.5vh;
    width: 30%;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.navigation {
    background-size: cover;
    background-position: center;
}

/* If you want to style your navigation links, you can add additional styles here */



.navigation ul {
    list-style: none;
    padding: 0;
    width: 50%;
    height: 50%;
}

.navigation li {
    margin-bottom: 1vh;
    width: 100%; /* Make list items take full width */
}

.navigation a {
    color: white;
    text-decoration: none;
    display: block;
    background-color: #555; /* Button background color */
    padding: 1vh 2vh;
    border-radius: 20px; /* Rounded corners */
    text-align: center;
    transition: background-color 0.3s ease; /* Smooth transition */
}

.navigation a:hover {
    background-color: #777; /* Darken color on hover */
}

.content {
    background-color: white;
    flex-grow: 1;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    width: 70%; /* Adjust width as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}



/*      About Page        */
/* ... Previous styles ... */

.navigation {
    width: 50%;
}

.background-image {
    background-image: url('1-bg.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 50%;
    position: fixed;
    z-index: -1;
}

.background-image::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.card {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 500px;
    z-index: 1;
    text-align: center;
}

/* ... Rest of the styles ... */



/* Base styles that apply to all devices fuck*/
#content {
    max-width: 1300px; /* maximum width */
    margin: auto;
    padding: auto;
}

/* Styles for tablets */
@media (max-width: 768px) {
    #content {
        padding: 15px;
    }
}

/* Styles for mobile phones */
@media (max-width: 480px) {
    #content {
        padding: 10px;
    }
}

/* Shared styles for all nav links */
.nav-link {
    display: inline-block;
    padding: 0 20px; /* Adjust horizontal padding as needed */
    height: 50px; /* Fixed height */
    line-height: 50px; /* Center text vertically */
    text-align: center; /* Center text horizontally */
    font-weight: bold; /* Bold text */
    font-size: 1.5em; /* Larger text */
    text-decoration: none; /* No underline */
    color: #fff; /* Text color */
    background-size: cover; /* Cover the button area */
    background-position: center; /* Center the background image */
    /* Other shared styles */
}

/* Import your custom font */
@import url('https://fonts.googleapis.com/css2?family=Your+Font+Name:wght@700&display=swap');

/* Apply the custom font */
.nav-link {
    font-family: 'Your Font Name', sans-serif; /* Your custom font */
}

/* Unique background images for each link */
.nav-link.home-bg {
    background-image: url('../images/btn1.gif');
}

.nav-link.about-bg {
    background-image: url('../images/btn1.gif');
}

/* ... Add more unique background classes for other nav links ... */

/* Styles for hover state */
.nav-link.home-bg:hover, .nav-link.home-bg:active {
    background-image: url('../images/btn1.gif');
}

.nav-link.about-bg:hover, .nav-link.about-bg:active {
    background-image: url('../images/btn1.gif');
}

/* ... Add more hover styles for other nav links ... */
