* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background-color: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 18px;
}

.blue-square {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: blue;
  margin-right: 10px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  color: black;
}

nav a:first-child {
  color: blue;
}

main {
  display: flex;
  padding: 50px;
}

.intro {
  display: flex;
  width: 100%;
}

.profile-card {
  background-color: #f4eade;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  width: 300px;
}

.profile-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-card h2 {
  font-weight: 800;
  margin: 15px 0 5px;
}

.profile-card .title {
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.socials a {
  color: black;
  margin: 0 10px;
  font-size: 16px;
}

.intro-text {
  flex: 1;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-text h1 {
  font-size: 60px;
  font-weight: 800;
}

.subtitle {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.buttons {
  margin-bottom: 25px;
}

.btn-primary {
  background-color: blue;
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 20px;
}

.btn-outline {
  background-color: white;
  border: 2px solid black;
  color: black;
  padding: 10px 25px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
}

.skills {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.skills h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.skills-list li {
  background: #0077cc;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 16px;
}
