@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500&display=swap');
:root {
--White: hsl(0, 0%, 100%);
--Light-gray: hsl(212, 45%, 89%);
--Grayish-blue: hsl(220, 15%, 55%);
--Dark-blue: hsl(218, 44%, 22%);
--Font-size: 15px;
--Weights-small: 400;
--Weight-big: 700;
}

* {
  margin: 0;
  padding: 0;

}

body {
  height: 100vh;
  width: 100vw;
  font-family: 'Outfit', sans-serif;
  background-color: rgb(195, 219, 228);
  box-sizing: border-box;
}
.div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
 width: 15rem;
 background-color: white;
 border-radius: 10px;
 box-shadow: 0 0 10px 5px #ccc; 
}





.image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5%;
}
img {
  width: 90%;
  height: auto;
  border-radius: 10px;
}

.texts {
  width: 85%;
  height: auto;
  padding-top: 8%;
  margin: auto;
}

.h3, .p {
  text-align: center;
}

.h3 {
font-weight: 700;
}

.p {
  margin-top: 5%;
  font-weight: 400;
  padding-bottom: 10%;
  color: var(--Grayish-blue);
  font-size: 15px;
}

