*{
		margin:0;
		padding:0;
		font-family: 'Noto Sans', sans-serif;
	}
	body{
		height:100vh;
		width:100vw;
	}
	section.background{
		height:100vh;
		width:100vw;
		background-color: #EFFFFD;
	}
	nav h1{
		color:#e67e22;
		font-size:30px;
	}
	nav{
		display:flex;
		padding:2% 6%;
		justify-content:space-between;
		align:centre;
		font-size:20px;
	}
	nav-links{
		flex:1;
		text-align:right;
	}
	li{
		list-style:none;
		display:inline-block;
		padding:8px 12px;
		position:relative;
	}
	li a{
		color:#e67e22;
		text-decoration:none;
	}
	li::after{
		content:'';
		width:0%;
		height:2px;
		background:#e67e22;
		display:block;
		margin:auto;
		transition:0.5s;
	}
	li:hover::after{
		width:100%;
	}
	section.about{
		width:90%;
		color:#e67e22;
	}
	p{
		position:absolute;
		top:25%;
		left:50%;
		transform:translate(-50%,-50%);
		text-align:center
		overflow-wrap:break-word;
		color:#e67e22;

	}
	video{
		position:absolute;
		top:35%;
		left:30%;
		width:40%;
		height:40%;
		border:10px solid #f0932b;
	}
