@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #d8aebb;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  position: sticky;
  top: 0;
  border-bottom: 2px solid #d8aebb;
}

main {
  margin: auto;
  width: 60%;
}

section {
  background-color: white;
  border-radius: 20px;
  margin: 20px;
  padding: 20px;
}

section h1 {
  margin-top: 0;
}

.avatar {
  display: flex;
  justify-content: center;
}

.avatar img {
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
}

.nav-item {
  text-decoration: none;
  padding: 0 5px;
  font-size: 24px;
  color: black;
}

.projects {
  display: flex;
  justify-content: space-around;
}

.project {
  text-align: center;
  width: 250px;
}
