:root {
	font-family: Inter, Helvetica, sans-serif;
	font-feature-settings: 'liga' 1, 'calt' 1;
	-webkit-text-size-adjust: none;
	/* fix for Chrome */
}

* {
	box-sizing: border-box;
	font-size: 1.125rem;
	color: rgb(0, 0, 0);
	letter-spacing: -0.0125rem;
	font-weight: 400;
}

body {
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	text-align: left;
	margin: 2rem 1rem;
	line-height: 1.4rem;
}

img {
	display: block;
	margin: 0rem 0rem;
	width: 100%;
}

.home-banner-image {
	display: block;
	margin-bottom: 2rem;
	width: 14rem;
	margin-left: 1rem;
}

.main-wrapper {
	width: auto;
	margin: auto;
	max-width: 40rem;
	min-width: none;
}

.section-wrapper {

}

.menu-wrapper {
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.image-wrapper {
	margin-bottom: 1rem;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9 Aspect Ratio */
	margin-bottom: 0em;
	/* Space below the video */
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.under-construction {
	color: red;
}

.caption {
	margin-top: 0.5rem;
	margin-bottom: 0rem;
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.4);
}

ul {
	list-style-type: none;
	/* Removes the list marker */
	padding-left: 0;
	/* Removes the indentation */
	margin-left: 0;
	/* Removes any margin if present */
}

li {
	padding: 0em;
	margin-bottom: 0.2rem;
}

p {
	font-size: 1.125rem;
}

h1 {
	color: black;
	font-size: 2.5rem;
	font-weight: 600;
	letter-spacing: 0.01rem;
	line-height: 2.8rem;
}

h2 {
	color: black;
	margin-top: 2rem;
	letter-spacing: 0.04rem;
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.2rem;
	margin-bottom: 0.8rem;
}

h3 {
	color: black;
	margin-top: 2rem;
	letter-spacing: -0.02rem;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6rem;
}

h3 a {
    font-size: inherit;
}

a {
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	font-weight: 600;
	color: black;
	/* font-weight: bold; */
}

a:hover {
	color: rgba(0, 0, 0,0.4);
	/* background-color: black; */
}

a:visited {
	text-decoration: none;
}

.tag {
	color: rgba(0, 0, 0, 0.4);
	/* font-family: 'Courier New', Courier, monospace; */
	font-weight: 500;
	font-size: 0.9rem;
}

.tag:hover {
	color: rgba(0, 0, 0, 0.8);
}

.project-item a {
    display: block; /* Makes the link block-level so it can contain other elements */
    text-decoration: none;
	transition: opacity 0.2s ease; /* Smooth transition for the opacity change */
}

.project-item {
    /* If you're not using grid for .project-item, remove the grid properties */
    width: 100%; /* Ensures the item takes full width */
}

.project-image-container {
    width: 100%; /* Full width of the column */
    height: 220px; /* Fixed height for all containers */
    overflow: hidden; /* Ensures the image doesn't overflow the container */
}

.project-image {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    object-fit: cover; /* Cover the container */
}

.project-info {
    padding-top: 10px; /* Adds padding */
	/* background-color: #f6f6fa; */
}

.project-title {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom:.5rem;
}

.project-subtitle {
	display: block; /* Each element on a new line */
	font-size: 1.1rem;
	font-weight: 400;
	padding-top: 0.4rem;
}

.project-date {
	color: rgba(0, 0, 0, 0.3);
	font-weight: 400;
	margin-left: 0.5rem;
}

/* Hover and active styles for the link */
.project-item a:hover, 
.project-item a:active {
    opacity: 0.7; /* Adjust transparency as needed */
    /* Add more styles as needed */
}

/* Responsive grid layout for the projects container */
.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    grid-gap: 20px; /* Space between grid items */
}

@media only screen and (max-width: 500px) {
	img {
		width: 100%;
		margin: auto;
	}
	
	.projects-container {
        grid-template-columns: 1fr; /* 1 item per row on small screens */
    }

}


@supports (font-variation-settings: normal) {
	:root {
		font-family: InterVariable, sans-serif;
	}
}

input { 
    color: white; 
}

#chat-container {
	background-color: #cfd4ff;
	/* background-color: #f0f0f0; */
	padding: 1rem;
	/* border-radius: 10px; */
	margin-top: 2rem;
}

#chat-container h2 {
	margin-top: 0px;
	margin-bottom: 0.5rem;
	color:rgba(7, 57, 231,1);
}

#chat-container a{
	color:rgba(7, 57, 231,1);
}

#chat-container a:hover{
	color:rgba(7, 57, 231,0.8);
}

#chat-container p {
	margin-block-start: 0;
	color:rgba(7, 57, 231,0.6);
}

#chat-output {
	margin-bottom: 10px;
	border: none;
}

#chat-input-container {
	background: none;
	border: none;
	display: flex;
	/* Enables flexbox layout */
	align-items: center;
	/* Centers items vertically */
}

#chat-input {
	color:rgba(7, 57, 231,1);
	background: #ffffff;
	border: none;
	padding: 0.5rem;
	flex-grow: 1;
	border-radius: 0px;
	/* Allows input to take up the remaining space */
	margin-right: 10px;
	/* Adds some space between input and button */
	outline: none;
}

#send-button {
	flex-shrink: 0;
	/* Prevents button from shrinking */
	/* Define width, padding, and other styles for the button as needed */
}

::placeholder {
	color:rgba(7, 57, 231,0.4);
}


#chat-output div:nth-child(even) {
	color:#cfd4ff;
}

#chat-output div {
	margin-bottom: 1rem;
}

button {
	color:rgba(7, 57, 231,1);
	font-weight: 600;
	background-color: transparent;
	border-style: none;
	padding: 0;
	font-family: InterVariable, sans-serif;
}

button:hover {
	color:rgba(7, 57, 231,0.7);
}

.message {
	display: flex;
	align-items: flex-start;
	/* Aligns items to the start of the cross axis */
}

.sender {
	min-width: 3rem;
	color:rgba(7, 57, 231,0.6);
	/* Adjust this value based on your longest sender name */
}

.text {
	flex: 1;
	font-weight: 500;
	color:rgba(7, 57, 231,0.9);
	/* Allows text to take up remaining space */
}

.cursor {
	display: inline-block;
	margin-left: 5px;
	opacity: 1;
	animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
	to {
		opacity: 0;
	}
}