<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@1,600&amp;family=Satisfy&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&amp;display=swap');
* {
-moz-
-webkit-
-o-
margin: 0;
padding: 0;
}
body{
	margin: 0;
	padding:0;
	background: linear-gradient(to right top, #16a085, #f4d03f );
}
.banner {
  width: 100%;
  margin: auto;
  min-height: 200px;
  background: linear-gradient(to right top, #ff6e7f, #bfe9ff);
  color: #f0ebec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner h1{
	color: #141414;
	font-family: 'Baloo Paaji 2', cursive;
	font-variant: normal;
	font-size: 150%;
	font-weight: 700;
	letter-spacing: .5rem;
	height: 20px;
	text-decoration: none;
	margin-top: 20px;
	margin-bottom: 30px;
}
.banner .links ul{
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

.banner .links ul li a {
	margin: .5rem;
  	color: #84d404;
  	text-decoration: none;
  	font-size: 20px;
  	background: #f7f7f5;
  	padding: .7rem;
  	border-radius: 5px;
  	transition: 500ms all linear;
}
.banner .links ul li a:hover{
		background: #0a360c;
        color: #ffffff;
		}

.active ul li {
  color: #46A049;
  background: ;
  box-shadow:2px 2px 2px #000;
  transform: translate(0, -.5rem);
	  }

.portfolio-items-wrapper{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
		
.portfolio-img-background {
		height: 500px;
		width: 100%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat; 
	}
	
@media screen and (min-width: 360px) and (max-width: 800px) {
 .banner .links ul li {
  margin-bottom: 30px;
}
.portfolio-items-wrapper{
	width: 100%
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.portfolio-img-background{
		height: 400px;
		width: 100%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
}
</pre></body></html>