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

body {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, sans-serif;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.container {
  display: grid;
  gap: 20px;
}

.top {
  display: grid;
  grid-template-areas: "pic intro";
  grid-template-columns: 2fr 2fr;
  background-color: #000000;
  border: 2px solid #e9e21e;
  border-radius: 15px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-pic {
  grid-area: pic;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #e9e21e;
  background-color: #000000;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.intro-text {
  padding-left: 10px;
  color: #e9e21e;
}

.intro-text h2 {
  margin-bottom: 10px;
  color: #e9e21e;
}

.bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hobbies, .aspiration {
  background-color:#e9e21e;
  border: 2px solid #000000;
  border-radius: 15px;
  padding: 20px;
}

.hobbies {
  grid-column: span 2;
}

.aspiration {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .top {
    grid-template-columns: 1fr;
  }

  .bottom {
    grid-template-columns: 1fr;
  }

  .hobbies, .aspiration {
    grid-column: span 1;
  }
}
