{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-outline: 0;
	font-family Roboto, sans-serif, arial;
}
html, body 
	{
	font-size: 14px;
	font-weight: 400;
	background: url("Beautiful-Plain-Website-Background.jpg"), #000;
	color: #fff;
}
.container {
	width: 1100px;
	margin: 0px auto;
	display: table;
}
.width-33 {
	width: 33%;
	float: left;
}
.width-66 {
	width: 66%;
	float: left;
}
/*****MENU SECTION*****/
.main-panel {
	width: 100%;
	float: left;
	padding-top: 20px;
	padding-bottom: 50px;
	height: 100vh;
}

.logo {
	font-size: 40px;
	font-weight: 600;
}

.span-col {
	color: #4791f0;
}

nav {
	float: right;
    width: 100%;
}

nav a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	margin-left: 20px;
	color: white;
}
/*****Main BANNER*****/
.width-50 {
	float: left;
	width: 50%;
}
.banner-section {
	width: 100%;
	float: left;
	margin-top: 25vh;
}
.banner-section h1 {
	font-size: 48px;
	margin-top: 10px;
	font-weight: bolder;
}
.banner-section h2 {
	font-size: 20px;
	line-height: 25px;
	margin-top: 10px;
	font-weight: 400;
}
.banner-section a {
	float: left;
	text-decoration: none;
	font-size: 18px;
	margin-top: 20px;
	border-radius: 50%;
	text-align: center;
	border: 2px solid #4791f0;
	color: #4791f0;
	margin-left: 10px;
	height: 50px;
	width: 50px;
	line-height: 50px;
}
/*****Main BANNER IMAGE*****/
.main-panel img {
	margin-top: 10%;
	width: 50%;
	margin-left: 10%;
}

/* Add your styles here */
.project {
    /* Your styles for the project container */
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
}

.project h2 {
    /* Your styles for project heading */
    color: #fff;
}

.project-image {
    /* Your styles for project image */
    max-width: 100%;
    height: auto;
}

.project button {
    /* Your styles for project button */
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.project-details {
    /* Your styles for project details container */
    margin-top: 20px;
    padding: 10px;
   
    
}
.code-image {
    /* Your styles for code images */
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: auto;    /* Allow the image to scale proportionally */
    border: 1px solid #ddd; /* Add a border to the image */
}
/* Add more styles as needed */
.button-link:hover {
	background-color: #2980b9; /* Darker button color on hover */
  }

  .button-link {
	display: inline-block;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	background-color: #3498db; /* Button color */
	color: #ffffff; /* Text color */
	border-radius: 5px; /* Rounded corners */
	transition: background-color 0.3s ease; /* Smooth transition on hover */
  }

