@charset "UTF-8";
/* CSS Document */
body {
font-family: Arial, sans-serif;
padding: 20px;
}

.project {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
  background: rgba(224,224,224,1.00);
  min-height: 20px;
}
.project img {
  max-width: 400px;
  height: auto; /* Ensures aspect ratio is maintained */
  margin-right: 10px;
  background: rgba(30,30,33,1);
  border: 2px solid;
  border-color: rgba(34,34,34,1.00);

}

.description {
flex: 1;
  height: auto;
  padding: 0px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
	
}

.gallery {
display: flex;
margin-bottom: 30px;
background: rgba(200,40,255,0);
gap:10px;
margin-left:20px;
margin-right:20px;
flex-wrap: wrap;
justify-content: center
}

.gallery img {
width: auto;
height: 400px;
background: rgba(30,30,33,1);
border:2px solid;
border-color:rgba(34,34,34,1.00)
}

.tinygallery{
display: flex;
margin-bottom: 30px;
background: rgba(200,40,255,0);
gap:10px;
margin-left:20px;
margin-right:20px;
justify-content:center;
flex-wrap: wrap;} 

.tinygallery img {
width: auto;
height: 350px;
background: rgba(30,30,33,1);border:thin;
border:2px solid;
border-color:rgba(34,34,34,1.00)
}

.hover {
    transition: 0.2s; /* smooth effect */
  }

  .hover:hover {
    filter:brightness(1.2);
	border:2px solid rgba(229,137,128,1.00);
    cursor: pointer; /* shows the hand cursor */
  }

.gallerytext{
max-width: 1200px;
height:60px;
border:2px solid;
border-color:rgba(34,34,34,1.00);
background: rgba(224,224,224,1.00);
padding: 20px;
font-family: "Montserrat", sans-serif;
font-size: 15px;
line-height: 2;
}
/*===========================*/
.row{width: 1200px;
height: 500px;
background: rgba(221,30,33,1);
margin-bottom: 25px;
margin-left:auto;
margin-right:auto;}

.title_excerpt{
	width:1200px;
	height: 150px;
	background:rgba(151,151,151,1);
	margin: 0px auto;
}

#quick_links_container{min-width: 200px;
	min-height:20px;
	margin: auto;
	margin-left:15px;
	margin-top: 20px;
	display:flex;
	justify-content: center;
	gap:20px;
	margin-bottom:20px;
	content-align:center;
}

.quickL2{width:200px;
	height:100px;
	background:rgba(224,224,224,1.00);
	color:rgba(255,255,255,1.00);
	padding:10px 10px;
	content-align:center;
	border-radius:100px;
	border:2px solid;
	border-color:rgba(34,34,34,1.00)
}

.quickL2 a:link{color:rgba(34,34,34,1.00);
	text-decoration: none}
.quickL2 a:visited{color:rgba(34,34,34,1.00)}
.quickL2 a:hover{color:white;
	background:rgba(229,137,128,1.00);
}
.quickL2 a:active{color:rgba(34,34,34,1.00)}


.quickL2 a {
	text-decoration:none;
	height:100px;
	width:200px;   /* if the button is too small, make this number bigger*/
}
	
h1{
	font-family:Dynalight, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size:80px;
	padding-left:20px;
	background-color:rgba(229,137,128,.50);
	line-height: 20px;
	text-align:center;
	letter-spacing: -2px
}


h2{
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	line-height: 19px;
	font-size:30px;
	padding-top:20px;
	padding-left:20px
}

h3{
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size:22px;
	margin-bottom:15px
}

p{
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 2;
	margin-top:0px
}

button {
	color: rgba(34,34,34,1.00);
	background-color: rgba(224,224,224,1.00);
	font-family: "Montserrat", sans-serif;
	font-size: 19px;
	border: 0px solid #2d63c8;
	border-radius: 50px;
	padding: 30px 70px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

button:hover {
	color: #FFFFFF;
	background-color: rgba(229,137,128,1.00);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	transition: 0.2s;
}

.margins{
margin-left:20px;
margin-right:20px
}

.line{
width:100%;
height:10px;
background:rgba(34,34,34,1.00);
}

.nobmarg{
margin-bottom:0px
}

.closer{
width: 80%;
margin-left:auto;
margin-right:auto
}

.image-flex {
	margin: 0px 20px;
	justify-content:center;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.image-flex img {
  width: 300px;
  height: auto;
}

.home-page .description {
  text-align: left; /* Align text to the left */
}