/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

#wrapper {
	width: 960px;
	margin-left:auto;
	margin-right: auto;
	margin-top: 20px;
	background-color: #fff;
	padding: 10px 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #bb4a37;
}

header {
  background: #004080;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

li {
	margin-bottom:5px;
	list-style-position: inside;
}

ul li {
	list-style-type: disc;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #004080;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
}

.skills {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.profile-img {
  max-width: 200px;
  display: block;
  margin: 1rem auto;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.project img {
  width: 100%;
  border-radius: 4px;
}

.project h3 {
  margin: 0.5rem 0;
}

footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}