@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

section {
  width: 100%;
  height: 100vh;
  background-color: #d6e2f0;
  display: flex;
  align-items: center;
  justify-content: center; }
  section div {
    background-color: white;
    width: 320px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 20px; }
    section div img {
      width: 290px;
      height: 290px;
      border-radius: 10px;
      margin-top: 8px; }
    section div h1 {
      font-family: Outfit;
      font-weight: 700;
      width: 265px;
      font-size: 22px;
      color: #1f3251;
      margin-top: 10px;
      text-align: center; }
    section div p {
      font-family: Outfit;
      font-size: 15px;
      font-weight: 400;
      color: #7b879d;
      width: 265px;
      margin-bottom: 40px;
      text-align: center; }

.attribution p {
  font-size: 11px;
  text-align: center; }
  .attribution p a {
    color: #3e52a3; }
