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

body {
  font-family: arial, sans-serif;
}

img {
  width: 100%;
}

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

.container section {
  padding: 15px;
  margin: 0 auto;
  max-width: 270px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .2);
}

.container img {
  border-radius: 8px;
}

.text {
  padding: 15px 8px;
  text-align: center;
}

.text h1 {
  margin: 12px 0;
  color: #252e42;
  text-align: center;
  font-size: 1.1rem;
}

.text p {
  font-size: .8rem;
  color: #9599a4;
  text-align: center;

}