* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d5e1ef;
}

.card {
  background: #fff;
  border-radius: 20px;
  width: 350px;
  height: 500px;
  padding: 20px;
}

.card img{
    width: 300px;
    border-radius: 20px;
}

.card h3{
    margin-top: 20px;
    text-align: center;
}

.card p{
    margin-top: 15px;
    text-align: center;
    font-size: smaller;
    color: #6c757d;
}

.attribution{
    position: fixed;
    bottom: 10px;
}