html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-image: url('https://content.codecademy.com/courses/learn-css-selectors-visual-rules/hypnotize_bg.png');
  display: flex;
  flex-direction: column;
  color: #333;
  background-color: rgba(0, 0, 0, 0.4); 
}

header {
  padding: 20px 0;
  width: 100%;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-weight: 700;
  margin: 0;
 
}

nav ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: flex;
  border-left: 2px solid black; 
  border-right: 2px solid black;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: black;
}

nav a:hover {
  text-decoration: underline;
}

.jumbotron {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('https://images.unsplash.com/photo-1718619578357-f3825be21d50?q=80&w=2400&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  height: 800px;
  text-align: center;
  width: 100%;
}
.page-jumbotron {
  height: 300px; /* Height for page 1 jumbotron */
}


.jumbotron h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
 
  
}

.jumbotron h3 {
  margin: 20px 0 0;
  font-weight: 400;

}

.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px; 
}

.about-me p {
  text-align: center;
  max-width: 800px;
  font-size: 30px;
  font-weight: 40;
  
}


.nav-link.active {
  font-weight: bold;
  color: black; 
}
footer {
  display: flex;
  justify-content: center;
  font-size: 12px;
  padding: 25px 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  width: 100%;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer a {
  color: black;
}

footer a:hover {
  text-decoration: none;
}

