
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 10vh;
	background-color: #333;
	position: sticky;
	top: 0;
	z-index: 10;
}

nav ul {
	display: flex;
}

nav li {
	margin-right: 20px;
	list-style: none;
}

nav a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	padding: 1rem 2rem;
}

nav a:hover {
	background-color: white;
	color: black;
}

section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}
/* Body styles */
body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background-color: #f9f9f9;
  }
  
  /* Header styles */
  header {
	background-color: #0077b6;
	color: #fff;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  header h1 {
	margin: 0;
	font-size: 32px;
  }
  
  header nav {
	display: flex;
  }
  
  header nav a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	margin-left: 20px;
  }
  
  /* Main styles */
  main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px;
  }
  
  .card {
	background-color: #fff;
	margin: 20px;
	padding: 20px;
	width: 300px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .card img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 20px;
  }
  
  .card h2 {
	font-size: 24px;
	margin: 10px 0;
  }
  
  .card p {
	font-size: 16px;
	text-align: center;
	margin: 0;
  }
  
  /* Footer styles */
  footer {
	background-color: #0077b6;
	color: #fff;
	padding: 20px;
	text-align: center;
  }
  
  footer p {
	margin: 0;
	font-size: 16px;
  }

  

#hero {
	background-image: url(/sky.jpg);
	background-size: cover;
	background-position: center;
}

.hero-text {
	color: white;
	text-align: center;
}

.hero-text h1 {
	font-size: 5rem;
	margin-bottom: 1rem;
}

.hero-text p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.btn {
	padding: 1rem 2rem;
	background-color: white;
	color: black;
	border: none;
	border-radius: 30px;
	font-size: 1.2rem;
	cursor: pointer;
}

#about .container {
	display: flex;
	flex-direction: row;
}

.about-text {
	flex: 1;
	padding: 10%;
}

.about-text h2 {
	font-size: 4rem;
	margin-bottom: 2rem;
}

.about-text p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.about-image {
	flex: 1;
	background-image: url(/jimmy-myself.png);
	background-size: cover;
	background-position: center;
}

.dashboard-container {
	display: flex;
	margin-top: 2em;
	margin-bottom: 2em;
  }
  
  .dashboard1, .dashboard2 {
	width: 50%;
	max-width: 1400px;
  }
  
  .project {
	margin-bottom: 2em;
  }
  