body {
  max-width: 1440px;
  background-color: hsl(0, 0%, 8%);
  height: 100%;
  margin: 0;
}
.container {
  width: 350px;
  height: 500px;
  background-color: hsl(0, 0%, 12%);
  /* display: grid;
  justify-content: center; */
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* margin-top: 10%;
  margin-bottom: 10%; */
  border-radius: 10px;
}
.section-1 img {
  border-radius: 100px;
  margin-top: 20px;
  margin-left: 140px;
  margin-right: 170px;
  width: 70px;
}

.section-1 h3 {
  color: hsl(0, 0%, 100%);
  font-family: "Baloo Bhai 2", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
.section-1 .p1 {
  color: hsl(75, 94%, 57%);
  font-family: "Baloo Bhai 2", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: -5;
  margin-top: -10px;
}
.section-1 .p2 {
  color: hsl(0, 0%, 100%);
  font-family: "Baloo Bhai 2", sans-serif;
  font-weight: static 400;
  font-size: 14px;
  text-align: center;
}

/* section 2 starts here */
.section-2 {
  display: grid;
  justify-content: center;
  padding-bottom: 20px;
}
.section-2 a {
  text-decoration: none;
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  font-family: "Baloo Bhai 2", sans-serif;
  font-weight: 600;
  font-size: 14px;
  height: 30px;
  width: 200px;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  margin: 5px;
  padding: 5px 40px;
  transition: 0.5s ease;
}
.section-2 a:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 20%);
}

@media (max-width: 375px) {
  body {
    max-width: 375px;
    background-color: hsl(0, 0%, 8%);
    height: 100%;
    margin: 0;
  }
  .container {
    width: 320px;
    height: 480px;
    background-color: hsl(0, 0%, 12%);
    /* display: grid;
        justify-content: center; */
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    /* margin-top: 10%;
        margin-bottom: 10%; */
    border-radius: 10px;
  }
  .section-1 img {
    border-radius: 100px;
    margin-top: 20px;
    margin-left: 130px;
    margin-right: 170px;
    width: 70px;
  }

  .section-1 h3 {
    color: hsl(0, 0%, 100%);
    font-family: "Baloo Bhai 2", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }
  .section-1 .p1 {
    color: hsl(75, 94%, 57%);
    font-family: "Baloo Bhai 2", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: -5;
    margin-top: -10px;
  }
  .section-1 .p2 {
    color: hsl(0, 0%, 100%);
    font-family: "Baloo Bhai 2", sans-serif;
    font-weight: static 400;
    font-size: 14px;
    text-align: center;
  }

  /* section 2 starts here */
  .section-2 {
    display: grid;
    justify-content: center;
    padding-bottom: 20px;
  }
  .section-2 a {
    text-decoration: none;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-family: "Baloo Bhai 2", sans-serif;
    font-weight: 600;
    font-size: 14px;
    height: 30px;
    width: 200px;
    display: inline-block;
    text-align: center;
    border-radius: 8px;
    margin: 5px;
    padding: 2px 10px;
    transition: 0.5s ease;
  }
  .section-2 a:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%);
  }
}
