* {
    box-sizing: border-box;
  }
  

body {
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center; /* vertically center */
    height: 100vh;        /* take full height of screen */
    text-align: center;
    margin: 0;
    font-family: "Outfit", sans-serif;
  }
  

.container {
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  margin: 20px;
  width: 100%;
  max-width: 320px;
  padding: 20px 15px;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.2);
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
  }
  
@media (min-width: 375px) {
  .container {
    max-width: 400px;
  }
}
@media (min-width: 1440px) {
    .container {
      max-width: 450px;
      padding: 20px 20px; 
    }
  
    .info h1 {
      font-size: 20px; /* Increase heading font-size for desktop */
      max-width: 100%; /* Remove the 70% width restriction */
    }
  
    .info p {
      font-size: 16px; /* Optional: slightly larger paragraph font for desktop */
    }
  }
  

  .info {
    padding: 25px 20px;
  }
  
.info h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(218, 44%, 22%);
  margin: 10px 0;
  text-align: center;

}

.info p {
  font-weight: 300;
  font-size: 1rem;
  color: hsl(216, 15%, 48%);
  margin: 0;
  padding: 0 10px;
  line-height: 1.5;
}

.attribution {
    font-size: 11px;
    text-align: center;
    padding: 10px 0;
  }
  

.attribution a {
  color: hsl(228, 45%, 44%);
  text-decoration: none;
}

.attribution a:hover {
  color: red;
}
