
body {
    background-color: black;
    background-image: url('/images/background7.jpg');
    background-size: cover;
    background-repeat: repeat;
    color: white;
    font-family: monospace;
    margin: 0;
    padding: 0;
}

.header-banner img {
    max-width: 100%;
    width: 100%;
    height: 250px;
    display: block;
    margin: 0 auto;
}.portfolio-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.project-info {
    flex: 1;
    padding-right: 10px;
    text-align: right; /* Right-align text for all rows */
    align-items: flex-start; 
}

.project-title {
    font-size: 20px; /* Adjust the desired font size */
}


/* Alternate text and image alignment for even and odd rows */
.portfolio-row:nth-child(even) {
    flex-direction: row-reverse; /* Reverse the order of flex items */
}

.portfolio-row:nth-child(odd) .project-info {
    text-align: left; /* Left-align text for odd rows */
}


.portfolio-image {
    max-width: 200px; /* Set the desired width */
    max-height: 200px; /* Set the desired height */
    width: 200px;
    height: 200px;
}

header {
    background-color: #222;
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 24px;
}

.navbar {
    text-align: center;
    margin-top: 20px;
}

.navbar a {
    text-decoration: none;
    margin: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.navbar a:hover {
    background-color: #444;
    transform: scale(1.05);
    box-shadow: 0 0 10px white;
}

.content {
    margin: 20px;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.8); /* Adjust the alpha (fourth) value for transparency */
}

.large-button:hover {
    background-color: #333; /* Button background color on hover */
    border-color: #ffffff; /* Border color on hover */
}
/* Styling for unvisited links */
a:link {
    font-weight: bold;
    color: white;
    text-decoration: underline; /* Add underline by default */
}

/* Styling for visited links */
a:visited {
    font-weight: bold;
    color: lightgray; /* Change color for visited links */
}

/* Styling for links inside buttons */
.button a {
    text-decoration: none; /* Remove underline for links inside buttons */
}
.navbar a {
    text-decoration: none; /* Remove underline for links in the header class */
}


.large-button {
    display: inline-block;
    padding: 15px 10px;
    background-color: #222; /* Button background color */
    color: #fff; /* Text color */
    text-align: center;
    text-decoration: none;
    font-size: 18px; /* Adjust font size as needed */
    border: 2px solid #BBB; /* Border color */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.medium-button {
    display: inline-block;
    padding: 10px 8px; /* Adjust padding for medium size */
    background-color: #222;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px; /* Adjust font size for medium size */
    border: 2px solid #BBB;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.medium-button:hover {
    background-color: #333;
    border-color: #ffffff;
}

.small-button {
    display: inline-block;
    padding: 8px 6px; /* Adjust padding for small size */
    background-color: #222;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 14px; /* Adjust font size for small size */
    border: 2px solid #BBB;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.small-button:hover {
    background-color: #333;
    border-color: #ffffff;
}


.contact-box {
    text-align: center;
    padding: 40px;
    background-color: #111;
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.contact-info img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.contact-info span {
    font-size: 18px; /* Adjust the font size as needed */
}



.terminal {
    background: black;
    color: white;
    height: 200px;
    overflow-y: auto;
    font-family: monospace;
    border: 1px solid white;
    position: relative;
    scroll-behavior: smooth;
}

.input {
    background: black;
    color: white;
    font-family: monospace;
    border: none;
    width: 100%;
    outline-width: 0;
    padding: 0;
}
#command-line {
    text-align: left;
   /* scroll-behavior: auto;*/
}
.prompt {
    text-align: left; /* Set text alignment to left for the prompt */
}

#output-area {
    max-height: 188px;
    overflow-y: auto;
    text-align: left; /* Set text alignment to left for the output area */
  /*  scroll-behavior: auto; /* Add smooth scrolling behavior */
}
#terminal-container {
    max-height: 200px; /* Adjust the desired max height */
    overflow-y: auto;
    text-align: left;
   /*scroll-behavior: auto;*/
}
.terminal p {
    margin: 0;
    padding: 0;
}
.prompt p {
    margin: 0;
    padding: 0;
}
.welcome-message {
    color: green;
}

.about-container {
    text-align: center;
    padding: 20px;
}

.about-photo {
    display: block;
    margin: 0 auto;
    max-width: 400px; /* Ensure the photo doesn't exceed the container's width */
    height: auto;
}

.updates {
    display: none;
}

.project-description {
    margin-top: 20px;
}

.video-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap as needed */
}

.video-column {
    flex: 1;
    max-width: calc(50% - 20px); /* To create a 2-column layout with a gap */
}

body .privacyPolicy,
body .privacyPolicy__link,
body .sc-visuallyhidden {
    position:relative;
    width:1%;
    height:1px;
}




.code-box {
	background-color: black;
	color: #14ff00a8;
	padding: 10px;
	margin: 20px 0;
	border-radius: 10px;
	border: 1px solid white;
}

.code-box code {
	display: block;
	font-size: 14px;
	padding: 5px 3px 12px 3px;
}

.code-box button {
	background-color: #8888885e;
	color: #ffffffbd;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 7px;
}



.code-box2 {
	background-color: black;
	color: #00ccffa8;
	padding: 10px;
	margin: 20px 0;
	border-radius: 10px;
	border: 1px solid rgb(22, 188, 248);
}

.code-box2 code {
	display: block;
	font-size: 14px;
	padding: 5px 3px 12px 3px;
}

.code-box2 button {
	background-color: #8888885e;
	color: #ffffffbd;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 7px;
}