* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #328cf3;
}
#container {
  position: absolute;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 600px;
  padding: 40px 20px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 5vmin;
  color: #051a32;
  font-weight: 600;
  line-height: 1.8em;
  text-align: center;
  box-shadow: 0 20px 50px rgba(5, 26, 50, 0.18);
}
#container span {
  font-weight: 400;
  color: #4b5969;
}
