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

body,
html {
  background-color: #141414;
  color: #fff;
  font-family: Montserrat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
  color: #141414;
  font-size: 16px;
  font-weight: 700;
}

main {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

ul {
  list-style: none;
}

.profile-picture {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 16px;
}

/* Se puede utilizar el nombre del elemento o la clase (H1 o clase titulo)*/
.titulo {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

h2 {
  margin-bottom: 24px;
}

.proyectos li {
  background-color: #f5f5f5;
  border-radius: 100px;
  margin-bottom: 24px;
}

.proyectos li:hover {
  opacity: 0.9;
}

.proyectos li.bg-amarillo {
  background-color: #ffb334;
}

.proyectos li a {
  padding: 8px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.proyecto-titulo {
  width: 100%;
  padding-right: 47px;
}
