* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(212, 45%, 89%);
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 {
  color: hsl(218, 44%, 22%);
  line-height: 1;
  padding-bottom: 20px;
  font-size: 24.41px;
  font-weight: 700;
}

.component {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  width: 375px;
  display: flex;
  flex-direction: column;

  text-align: center;
  padding: 30px;
  border-radius: 10px;
}

.code {
  height: 300px;
  border-radius: 10px;
}

.description {
  padding-top: 20px;
}

.description-paragraph {
  color: hsl(220, 15%, 55%);
  font-size: 18px;
  text-align: center;
  font-weight: 400;
}

@media only screen and (max-width: 400px) {
  .component {
    width: 375px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 375px) {
  .component {
    width: 300px;
    padding: 20px;
  }

  .code {
    height: 250px;
  }
}
