<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: url('main-image.jpg') top center/cover no-repeat fixed;
  background-size:100%;
}
p {
	font-size:clamp(1.0rem, 1.1vw, 1.2vw);
	line-height:1.6;
}
a {
	color:#3F58BA;
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
.navbar {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  color: white;
  font-weight: 300;
  font-size:13px;
}

nav {
  display: flex;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem;
  position: relative;
}
.main {
	width:60%;
	margin:auto;
}
.main-heading {
  color: #1C1C1C;
  font-size: clamp( 1.5rem, 2.7vw, 2.8vw);
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.typed-text {
  white-space: pre;
}

.cursor {
  display: inline-block;
  width: 0.2rem;
  height: 2rem;
  background-color: white;
  opacity: 1;
  animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.services,
.about,
.contact {
  padding: 2% 2% 1%;
  background-color: rgba(255, 255, 255, 1.0);
  min-height: 21vh;
}

.services h2,
.about h2,
.contact h2 {
	font-size:clamp(1.2rem, 1.6vw, 1.7vw);
  font-weight: 500;
  margin-bottom: 2vh;
}
.image-bar {
	width:60%;
	margin:auto;
}
.img-responsive {
	width:100%;
	height:auto;
}
.row {
	display:grid;
	grid-template-columns: auto auto auto;
	margin:auto;
}
.img-grid {
	padding: 4rem 2rem;
  background-color: rgba(255, 255, 255, 1.0);
  min-height: 20vh;
}
footer {
	background-color:#ABABAB;
	padding:2% 0 1%;
	border-top:solid 3px #999;
	margin-top:8%;
}
footer p {
	font-size:13px;
	text-align:center;
	
}</pre></body></html>