/* The designs were created to the following widths:
- Mobile: 375px
- Desktop: 1440px

## Colors
- White: hsl(0, 0%, 100%)
- Light gray: hsl(212, 45%, 89%)
- Grayish blue: hsl(220, 15%, 55%)
- Dark blue: hsl(218, 44%, 22%)

### Body Copy
- Font size (paragraph): 15px

### Font
- Family: [Outfit](https://fonts.google.com/specimen/Outfit)
- Weights: 400, 700 */

@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700&display=swap');

body,
#container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  background-color: hsl(212, 45%, 89%);
}

#container {
  background-color: hsl(0, 0%, 100%);
  width: 325px;
  height: 500px;
  border-radius: 1.25em;
  margin-top: 100px;
}

#logo {
  width: 290px;
  margin-top: 17.5px;
  border-radius: 0.6em;
}

#textArea {
  margin: 18px 35px;
}

#cardHeader,
#cardInfo {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#cardHeader {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: hsl(218, 44%, 22%);
}

#cardInfo {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: hsl(220, 15%, 55%);
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}
.attribution a {
  color: hsl(228, 77%, 27%);
}
