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

a{
  text-decoration: none;
  color:#1F314F;
}

html, body {
  height: 100%; 
  overflow: hidden;
  background-color: #D5E1EF;
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  gap: 32px;
}

.container {
  width: 320px;
  height: 490px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 16px 16px 40px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.img-focous > img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px; 
  margin-bottom: 24px;
}

.card-text > h3{
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 16px;
  text-align: center;
  color: #1F314F;
}

.card-text > p {
  text-align: center;
  color: #68778D;
}

