@charset "UTF-8";
/*headline: font-family: "obviously", sans-serif;
paragraph: font-family: "pt-serif", serif;
*/

/*MY PORTFOLIO THEME:
  blue:#495CED
  purple:#C689FB
  Lime green:#D5F781
  light blue: #C9EEF9
  white:#FFFFFF
  black: #000000

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: #C689FB;
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #FFFFFF;
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: #D5F781;
    color: #fff;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: rgba(236,240,241,1.00);
    color: #fff;
}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
/*navbar-brand logo*/
.navbar-brand {
    backgound-image: url("../images/PORTFOLIO LOGO.png");
    background-repeat: no-repeat;
    padding-left: 60px;
    background-position: 0px center;
    background-size: 50px auto;
    background-image: url(../images/PORTFOLIO%20LOGO.png);
    width: 0px;
    margin-left: 117px;
    margin-top: 0px;
    margin-right: 251px;
    margin-bottom: 0px;
    height: 60px;
    max-height: 42px;
}

/*header banner section*/
#home_banner {
    padding-left: 0px;
    padding-right: 0px;
    positon: relative;
    width: auto;
}

/*rem values are relative to the root html element, 1rem=16p*/
#home_banner h1 {
	font-size: 4rem;
	color: #FFFFFF;
	text-shadow: 2px 1px rgba(71,71,71,0.80);
	position: absolute;
	left: 3%;
	bottom: 5%;
	
}


/*3 col main section*/
.main h2 {text-align: center;
		font-weight: 800;}
		
.image-wrapper {
	text-align: center;
}


body {
	background-color:#FFFFFF;
}


/*home images*/




/* button color */
.myButton {
  background-color: #C689FB; 
  color: white; 
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.myButton:hover {
  background-color:#D5F781; /* Color when hovered */
}

/*Form*/

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh; /* Full height */
}

.form-box {
    width: 50%;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


/*footer*/
footer {text-align: center;
	line-height: 30px;
	background-color: #000000;
	color: #FFFFFF;
}


/*Media Query Breakpoints*/
/*Small Devices ONLY*/
@media (min-width:375px){
#home_banner h1 {
	font-size: 1rem;
	bottom: 3%	
	}
}

/*SMALL SIZE ONLY*/
@media screen and (min-width: 576px){
#home_banner h1 {
	font-size: 1rem;
	bottom: 3%;
	left: 3%		
	}
}

/*MEDIUM SIZE ONLY*/
@media (min-width: 768px) {
#home_banner h1 {font-size: 2rem;
				bottom: 5%;
				left: 3%;
				}
	}

/*LARGE SIZE ONLY*/
@media screen and (min-width:992px) {
	#home_banner h1 {
		font-size: 3rem;
		bottom: 50%;
		left: 3%;
	}
	
}
