* {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-align: center;
}

body {
  padding: 80px;
  background-color: #290f42;
  color: white;
}

div {
  margin: 3px;
}

p {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

#name {
  color: white;
  margin: 0;
  transition: 0.2s;
  font-size: 2rem;
}

#name:hover {
  opacity: 0.8;
}

#perfil {
  margin: 0 auto 3rem auto;
}

#perfil-image {
  border-radius: 50%;
  width: 8rem;
  transition: 0.2s;
}

#perfil-image:hover {
  transform: scale(1.1);
}

span {
  transition: 0.2s;
  opacity: 0.5;
  color: white;
}

span:hover {
  opacity: 0.8;
}

i {
  color: white;
  font-size: 4rem;
  transform: 0.5s;
  margin: 15px;
}

#grid-container {
  grid-gap: 60px 20px;
  display: grid;
  justify-content: center;
  grid-template-rows: repeat(3, 6rem);
  grid-template-columns: repeat(2, 40%);
}

.grid-item {
  background-color: #4e2b7b;
  border-radius: 30px;
  transition: 0.5s;
  cursor: pointer;
}

.grid-item:hover {
  background-color: #b754f8;
  transform: scale(1.1);
}

#about {
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.about-content p {
  line-height: 1.6;
}

strong {
  font-weight: bold;
}
