 
	body
	{
		margin: 0;
		padding: 0;
		width: 100%;
		height: auto;
	}
	
	/*
	====================================
		HEADER
	====================================
	*/
	
	
	header
	{
		width: 100%;
		height: 100px;
		background-color: #00d914;  /* green */

	}
	
	header #header
	{
		max-width: 1200px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}
	
	header #header #logo
	{
		width: 200px;
		height: 150px;
		background-color: #ffffff;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
		box-shadow: 3px 5px 10px #3d3d3d;
		text-align: center;
	}
	
	header #header #logo img
	{
		margin-top: 30px;
	}
	
	nav
	{
		max-width: 300px;
		height: auto;
		text-align: center;
	}
	
	nav ul
	{
		display: inline-block;
		list-style: none;
		padding: 20px 0;
	}
	
	nav ul li
	{
		float: left;
	}
	
	nav ul li a
	{
		padding: 10px;
		text-decoration: none;
		color: white;
		text-transform: uppercase;
		font-weight: bold;
	}
	
	nav ul li a:hover
	{
		color: #575757;
	}
	
	@media screen and (max-width: 700px)
	{
		header #header #logo
		{
			display: none;
		}
		
		nav
		{
			margin: 0 auto;
		}
		
		nav ul
		{
			padding: 5px 0;
		}
		
		nav ul li a
		{
			font-weight: normal
		}
	}
	
	/*
	====================================
		MAIN
	====================================
	*/
	
	main
	{
		width: 100%;
		height: auto;
	}	
	
	/*  Part I */
		
	main #part-I
	{
		max-width: 1000px;
		height: auto;
		margin: 0 auto;
		padding-top: 100px;
		display: flex;
		justify-content: space-between;
	}
	
	main #part-I .main-header
	{
		text-align: center;
	}
	
	main #part-I .main-header h2
	{
		padding: 20% 0;
		font-size: 2em;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		color: #00d914;
	}
	

	@media screen and (max-width: 700px)
	{
		main #part-I
		{
			padding-top: 50px;
			flex-direction: column;
			align-items: center;
		}
			
		main #part-I .main-header
		{
			max-width: 300px;
		}
		
		main #part-I #atom-pic
		{
			max-width: 300px;
		}
		
		main #part-I .main-header h2
		{
			padding: 5% 0;
		}
	}
	
	/*  Part II */
	
	main #part-II
	{
		width: 100%;
		height: auto;
		background-color: #d8d8d8;  /* grey */
		text-align: center;
	}
	
	main #part-II .three-divs
	{
		max-width: 300px;
		height: 100%;
		display: inline-block;
		margin: 50px 20px;
		color: white;
		font-size: 1.15em;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 20px;
		background-color: rgba(0,217,20,0.9);  /* green #00d914; */
		box-shadow: 3px 5px 10px #3d3d3d;
	}	
	
	main #part-II .three-divs:hover
	{
		background-color: rgba(0,217,20,1);
	}
	
	main #part-II .three-divs p
	{
		padding: 20px;
	}
	
	/*  Part III */
	
	main #part-III
	{
		width: 100%;
		height: auto;
	}
	
	main #part-III #text-I
	{
		max-width: 1000px;
		height: auto;
		margin: 50px auto;
		text-align: center;
		padding: 0 10px;
	}
	
	main #part-III #button
	{
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-end;
	}
	
	main #part-III #button a
	{
		display: inline-block;
		padding: 15px 40px;
		background-color: #00d914;
		color: white;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 20px;
		text-decoration: none;
	}
	
	
	hr
	{
		width: 70%;
		border: 0;
		height: 1px;
		background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
		margin-bottom: 50px;
	}
	
	/*  Part IV */
		
	#part-IV
	{
		width: 100%;
		height: auto;
	}
		
	#part-IV #address
	{
		max-width: 500px;
		margin: 0 auto 50px auto;
		text-align: center;
		border: 1px solid white;
		box-shadow: 3px 5px 10px #3d3d3d;
	}
	
	#part-IV #address h5
	{
		font-size: 20px;
	}
	
	
	/*
	====================================
		FOOTER
	====================================
	*/
	
	footer
	{
		width: 100%;
		height: 100%;
		background-color: #00d914;
		margin: 0;
		padding: 0;
	}
	
	footer #cookies
	{
		max-width: 800px;
		margin: 0 auto;
		text-align: center;
	}
	
	footer #cookies p 
	{
		padding-top: 50px;
		color: white;
	}