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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.3;
  background: hsl(212, 45%, 89%);

  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1400px;
}

.card {
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 10px 20px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.card-image {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.card-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.card-text {
  opacity: 0.6;
  margin-bottom: 20px;
}

@media (max-width: 375px) {
  .card {
    margin: 120px auto;
  }
}
