	/* General styles */
body {
    background-image: url("/files/background2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    padding: 0;
    font-size: 20px;
    height: 100%;
    overflow-x: hidden; /* Ensure no horizontal scroll */
}



h3 {
    font-size: 25px;
}

.recurse {
    /* Add styles for the icon, e.g., size, color, etc. */
    float: right; /* Float the icon to the right */
    margin-left: 8px; /* Adjust spacing between icon and text */
    vertical-align: middle; /* Align the icon vertically with text */
}

p {
    font-size: 22px;
    text-shadow: 2px 2px 2px #FFFFFF66; /* Apply a shadow with a 2px horizontal offset, 2px vertical offset, and 4px blur using a white color */
    -webkit-text-stroke: 0.5px black; /* Apply a white outline with a width of 2px (for some browsers) */
    text-stroke: 0.5px black; /* Apply a white outline with a width of 2px (for modern browsers) */	
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 20px;
}

.project {
    background-color: rgb(59 130 246 / .5);
    border: 5px solid #030b51;
    margin-bottom: 20px;
    position: relative;
    width: calc(50% - 20px);
    height: 100%;
    overflow: hidden;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.project .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.project .center .image-wrapper {
    margin: 10px;
}

.project .center .image-wrapper img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Menu bar styles */
#menu {
    position: sticky;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    background-color: #333;
    color: #fff;
    padding: 10px;
    z-index: 999;
    border-radius: 10px;
    transition: top 0.3s;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu li {
    display: inline;
    margin-right: 20px;
}

#menu a {
    text-decoration: none;
    color: #fff;
}

#menu a:hover {
    text-decoration: underline;
}

#content {
    margin-top: 100px; /* Add margin to content to account for the menu */
}

#header {
    top: 0;
    text-align: center;
    font-size: 6vw;
    color: white; /* Set the text color to white */
    font-weight: bold; /* Make the text bold */
    text-shadow: 2px 2px 4px black; /* Apply a shadow with a 2px horizontal offset, 2px vertical offset, and 4px blur using a black color */
    -webkit-text-stroke: 2px black; /* Apply a black outline with a width of 2px (for some browsers) */
    text-stroke: 2px black; /* Apply a black outline with a width of 2px (for modern browsers) */
}


@media (max-width: 800px) {
    .container {
        justify-content: flex-start;
    }

    .project {
        flex-basis: 100%;
        width: 100%;
    }
	
	.project .center .image-wrapper img {
		height:80%;
	}
}
