   /* Reset/Global styles */
   * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	background-color: #121212;
	color: #ffffff;
	font-family:'Work Sans', sans-serif;
	font-size:1.5rem;
	line-height: 2.0rem;
  }

  a {
	text-decoration: none;
	color: #42f575;
	transition:all .3s;
  }
  a:hover {
	  color:rgb(47, 177, 84);
  }

  /* Container */
  .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
  }

  /* Header */
  header {
	padding: 50px 0;
  }

  .header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
  }

  .logo {
	font-size: 1.5rem;
	font-weight: bold;
  }

  nav ul {
	list-style: none;
	display: flex;
  }

  nav li a {
	color: #ffffff;
	transition: color 0.3s;
	font-size:1.1rem;
	line-height:1.3rem;
	display:block;
	padding:5px 15px;
  }

  nav li a:hover,
  nav li a.current {
	color: #42f575;
  }

  p {
	  margin-bottom:30px;
  }
  p.footnote {
	font-size:15px;
	line-height:19px;
	margin-top:20px;
  }

  /* Hero Section */
  .hero {
	padding: 100px 0;
  }

  .hero-content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap:60px;
  }

  .hero-text {
	width:60%;
  }

  .hero-text h1 {
	font-size: 4.2rem;
	line-height:4.2rem;
	margin-bottom: 30px;
  }

  .hero-text p {
	font-size: 1.8rem;
	line-height:2.5rem;
	margin-bottom: 30px;
  }

  .buttons {
	display:flex;
	gap:10px;
	flex-wrap:wrap;
  }

  .cta-button {
	background-color: #42f575;
	color: #121212;
	padding: 15px 30px;
	font-weight:bold;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	display:inline-block;
	margin-bottom:10px;
  }

  .cta-button:hover {
	background-color:rgb(47, 177, 84);
	color:#121212;
  }

  .cta-button.linkedin {
	  position:relative;
	  padding-right:60px;
  }
  .cta-button svg {
	  width:30px;
	  height:auto;
	  position:absolute;
	  right:20px;
	  top:14px;
  }
  .cta-button svg path {
	  fill:white;
  }

  .hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .hero-image img {
	width:550px;
	margin-right:-200px;
	height: auto;
	border-radius: 5px;
  }

  /* Card Section */
  .cards {
	padding: 50px 0 100px 0;
  }

  .cards-inner {
	  display:flex;
		gap:20px;
	  flex-wrap:wrap;
	  margin-top:50px;
  }

  .card {
	background-color: #1e1e1e;
	border-radius: 5px;
	padding: 30px;
	flex-basis:calc(33% - 10px);
	align-content:flex-start;
	font-size:1.3rem;
	line-height:2.1rem;
  }
  .card.half {
	flex-basis:calc(50% - 10px);
  }

  .card img {
	max-width: 100%;
	height: auto;
	border-radius: 3px;
  }

  .pills {
	display:flex;
	gap:5px;
	flex-wrap:wrap;
	margin-bottom:30px;
  }
  .pill {
	border-radius:5px;
	border:1px solid white;
	padding:10px 20px;
	font-size:.9rem;
	line-height:.9rem;
	word-break:none;
	opacity:.6;
  }

  .works {
	display:flex;
	gap:20px;
	flex-wrap:wrap;
	margin-top:50px;
  }
  .work {
	background-color: #1e1e1e;
	border-radius: 5px;
	padding: 30px;
	flex-basis:100%;
	font-size:1.3rem;
	line-height:2.1rem;
  }
  .work img {
	max-width:100%;
	height:auto;
  }
  .work-inner {
	display:flex;
	gap:30px;
	flex-wrap:wrap;
  }
  .work-column {
	flex-basis:calc(50% - 15px);
  }
  .work .intro {
	margin-bottom:30px;
	margin-top:10px;
	font-size:1.8rem;
	line-height:2.4rem;
  }
  .work .label {
	text-transform:uppercase;
	font-size:14px;
	line-height:18px;
	margin-bottom:10px;
	letter-spacing:2px;
	opacity:.7;
  }
  .work .content {
	margin-bottom:30px;
  }

  h2 {
	  font-size:3.2rem;
	  line-height:3.2rem;
	  margin-bottom:30px;
  }

  h3 {
	margin: 15px 0 30px 0;
	font-size:2.4rem;
	line-height:2.4rem;
  }

  .card p {
  }

  .card-cta {
	display: inline-block;
	background-color: #42f575;
	font-weight:bold;
	color:#121212;
	padding: 10px 20px;
	border-radius: 3px;
	transition: background-color 0.3s;
  }

  .card-cta:hover {
	background-color: rgb(47, 177, 84);
	color:#121212;
  }

  .footer-svg {
	text-align:center;
  }
  .footer-svg img {
	max-width:100%;
  }

  /* Footer */
  footer {
	background-color: #181818;
	padding: 20px 0;
	text-align: center;
	font-size:1.1rem;
	line-height:1.8rem;
  }

  .mobile-show {
	  display:none;
  }
  .mobile-hide {
	  display:block;
  }

  .uniwars {
	  font-family: 'uniwars', Arial, sans-serif;
	  font-size:3.5rem;
	  line-height:2.8rem;
  }
  .uniwars.large {
	  font-size: 10rem;
		line-height:10rem;
	  margin-bottom:0;
  }

  h1.uniwars {
	  margin-bottom:30px;
  }
  h1.uniwars .line1 {
	  display:block;
  }
  h1.uniwars .line2 {
	  margin-left:42px;
	  display:block;
  }
  h3.uniwars {
	  font-size:2.1rem;
	  line-height:1.8rem;
  }
  img.spewnicorn {
	  width:250px;
	  height:auto;
  }
  img.criticalmess {
	  width:250px;
	  height:auto;
  }
  p.narrow, .narrow {
	  width:65%;
	  margin-left:auto;
	  margin-right:auto;
  }

  @media (max-width:1280px) and (min-width:992px) {
	  h3.uniwars {
		  font-size:1.5rem;
		  line-height:1.3rem;
	  }
	  .card {
		  flex-basis:calc(33% - 11px);
	  }
	  .work .intro {
		margin-top:0;
		font-size:1.5rem;
		line-height:2.1rem;
	  }
	  .work .content {
		font-size:1.1rem;
		line-height:1.9rem;
	  }
	  .work .card-cta {
		font-size:1.1rem;
		line-height:1.1rem;
	  }
  }

  /* Responsive Styles */
  @media (max-width: 1199px) {
	  .hero-text h1 {
		  font-size:2.8rem;
		  line-height:3.2rem;
	  }
	  h1.uniwars .line2 {
		  margin-left:39px;
	  }
	  .hero-text {
		  width:50%;
	  }
	  .hero-content {
		  gap:30px;
	  }
	  h1.uniwars {
		  font-size:2.8rem;
		  line-height:2.2rem;
	  }
  }

  @media (max-width: 992px) {
	  .hero {
		  padding:40px 0;
	  }
	  .card, .card.half {
		  flex-basis:100%;
	  }
	  .cards {
		  padding-top:20px;
	  }
	  .hero-text {
		  width:100%;
	  }
	  .hero-content {
		  flex-wrap:wrap;
	  }
	  .hero-content img {
		  width:100%;
		  margin:30px 0 30px 0;
	  }
	  h1 span.arrow {
		  transform:rotate(90deg);
		  display:inline-block;
	  }
	  .mobile-show {
		  display:block;
	  }
	  .mobile-hide {
		  display:none;
	  }
	  .work-column {
		flex-basis:100%;
	  }
  }

  @media (max-width: 768px) {
	.hero-content {
	  flex-direction: column;
	}
	
	.hero-text {
	  margin-right: 0;
	}
	
	.hero-image {
	  margin-top: 20px;
	}
	
	.header-content {
	  flex-direction: column;
	}
	nav {
	  display:none;
	}
	h1.uniwars {
	  font-size:2.2rem;
	  line-height:1.8rem;
	}
	.card {
	  padding:15px 15px;
	}
	p.narrow, .narrow {
	  width:100%;
	}
	header {
	  padding:25px 0;
	}
	.work {
		padding:15px;
	}
	.work h3.uniwars, h3.uniwars {
		font-size:1.2rem;
		line-height:1.5rem;
		word-break:break-all;
	}
	.work .intro {
		font-size:1.4rem;
		line-height:2.0rem;
	}
	.hero-text h1 {
        font-size: 2.0rem;
        line-height: 2.4rem;
    }
	body, .work {
		font-size:1.2rem;
		line-height:1.7rem;
	}
	.hero-text p {
		font-size:1.5rem;
		line-height:2.1rem;
	}
	.pill {
		padding:10px 10px;
		font-size:.8rem;
		line-height:.8rem;
	}
  }

  @media (max-width:600px) {
	  .logo.uniwars {
		  font-size:2.3rem;
		  line-height:1.8rem;
	  }
  }

  @font-face {
  font-family: 'uniwars';
  src: url('fonts/uniwars_bd_it-webfont.eot');
  src: url('fonts/uniwars_bd_it-webfont.eot?#iefix') format('embedded-opentype'),
	   url('fonts/uniwars_bd_it-webfont.woff2') format('woff2'),
	   url('fonts/uniwars_bd_it-webfont.woff') format('woff'),
	   url('fonts/uniwars_bd_it-webfont.ttf') format('truetype'),
	   url('fonts/uniwars_bd_it-webfont.svg#uniwars_rgbold_italic') format('svg');
  font-weight: normal;
  font-style: normal;

}