@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

* {
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: hsl(212, 45%, 89%);
}

#home {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 20%;
  padding: 10px;
  border-radius: 20px;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card img{
  width: 100%;
  border-radius: 20px;
  background-color: hsl(218, 44%, 22%);
}

.card h1 {
  font-weight: 700;
  margin: 10px 5px;
  text-align: center;
}

.card p {
  font-weight: 400;
  margin: 10px 5px;
  text-align: center;
}

@media screen and (max-width: 375px) {
  .card {
    width: 90%;
  }
}
