body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
	background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed
}

p {
	font-family: Arial, sans-serif;
	color: white;
    line-height: 1.6;
	margin: 0;
	padding:0;
}

#home-landing {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*width: 96.5vw;
    height: 26vh;
	margin-top:165px;*/
    text-align: center;
    overflow: hidden;
	/*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* 10% opacity shadow */
	/*background: rgba(0, 0, 0, 0.4); /* Black with 20% opacity */
	/*background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 90%);*/
	position: fixed;
    left: 50%;
    top: 50%;
    width: 800px;   /* Fixed width */
    height: 300px;  /* Fixed height */
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
	z-index: 10;
}

#logo-container {
    margin-bottom: 10px;
}

#techre-logo {
    width: 150px;
    height: 150px;
}

#quote-container {
    font-size: 1.2em;
    color: #555;
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* 50% opacity shadow */
	padding:2px;
    border-radius: 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
