* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    background-color: hsl(212, 45%, 89%);
  }
  
  .container {
    border-radius: 20px;
    padding: 15px;
    width: 250px;
    background-color: hsl(0, 0%, 100%);
  }
  
  img {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .text {
    text-align: center;
  }
  
  h3 + p {
    margin-top: 10px;
  }
  
  @import url('https://fonts.google.com/specimen/Outfit');
  
  p {
    font-weight: 400;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
  }
  
  h3 {
    font-weight: 700;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
  }
  
  @media screen and (max-width: 375px) {
    .container {
      width: 90%;
    }
  }