/* styles.css */

	body {
		position: relative;
		margin: 0;
		background-color: black;  
		font-family: sans-serif;
		padding-top: 80px;
	}


	body::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url('../images/drone1_S-blr.jpg');
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-size: top;
		background-position: top;
		z-index: -1;
		}
